Commit 73d70902e00afe3d81aa12c686bc8e6498ba0dcd

Authored by Jay Berkenbilt
1 parent c75577f9

Typos in comments

cSpell.json
@@ -263,6 +263,7 @@ @@ -263,6 +263,7 @@
263 "onum", 263 "onum",
264 "opages", 264 "opages",
265 "opath", 265 "opath",
  266 + "orred",
266 "ossl", 267 "ossl",
267 "ostream", 268 "ostream",
268 "ostringstreams", 269 "ostringstreams",
@@ -308,6 +309,7 @@ @@ -308,6 +309,7 @@
308 "qpdf", 309 "qpdf",
309 "qpdfacroformdocumenthelper", 310 "qpdfacroformdocumenthelper",
310 "qpdfannotationobjecthelper", 311 "qpdfannotationobjecthelper",
  312 + "qpdfconstants",
311 "qpdfcrypto", 313 "qpdfcrypto",
312 "qpdfcryptoimpl", 314 "qpdfcryptoimpl",
313 "qpdfcryptoprovider", 315 "qpdfcryptoprovider",
@@ -336,6 +338,7 @@ @@ -336,6 +338,7 @@
336 "qpdfstreamfilter", 338 "qpdfstreamfilter",
337 "qpdfsystemerror", 339 "qpdfsystemerror",
338 "qpdftokenizer", 340 "qpdftokenizer",
  341 + "qpdftypes",
339 "qpdfwriter", 342 "qpdfwriter",
340 "qpdfx", 343 "qpdfx",
341 "qpdfxrefentry", 344 "qpdfxrefentry",
@@ -415,6 +418,7 @@ @@ -415,6 +418,7 @@
415 "unencrypted", 418 "unencrypted",
416 "unfilterable", 419 "unfilterable",
417 "unparse", 420 "unparse",
  421 + "unretrieved",
418 "upages", 422 "upages",
419 "upass", 423 "upass",
420 "urandom", 424 "urandom",
include/qpdf/QPDFObjectHandle.hh
@@ -320,8 +320,9 @@ class QPDFObjectHandle @@ -320,8 +320,9 @@ class QPDFObjectHandle
320 QPDF_DLL 320 QPDF_DLL
321 char const* getTypeName(); 321 char const* getTypeName();
322 322
323 - // Exactly one of these will return true for any initialized object. Operator  
324 - // and InlineImage are only allowed in content streams. 323 + // Exactly one of these will return true for any initialized
  324 + // object. Operator and InlineImage are only allowed in content
  325 + // streams.
325 QPDF_DLL 326 QPDF_DLL
326 bool isBool(); 327 bool isBool();
327 QPDF_DLL 328 QPDF_DLL
include/qpdf/qpdf-c.h
@@ -535,7 +535,7 @@ extern "C" { @@ -535,7 +535,7 @@ extern "C" {
535 * object. All QPDFObjectHandle objects are deleted when they are 535 * object. All QPDFObjectHandle objects are deleted when they are
536 * no longer referenced. Releasing an object handle simply 536 * no longer referenced. Releasing an object handle simply
537 * invalidates it. For example, if you create an object, 537 * invalidates it. For example, if you create an object,
538 - * add it to an existing dictionary or array, and then release it's 538 + * add it to an existing dictionary or array, and then release its
539 * handle, the object is safely part of the dictionary or array. 539 * handle, the object is safely part of the dictionary or array.
540 * Similarly, any other object handle refering to the object remains 540 * Similarly, any other object handle refering to the object remains
541 * valid. Explicitly releasing an object handle is essentially the 541 * valid. Explicitly releasing an object handle is essentially the