Commit 73d70902e00afe3d81aa12c686bc8e6498ba0dcd
1 parent
c75577f9
Typos in comments
Showing
3 changed files
with
8 additions
and
3 deletions
cSpell.json
| ... | ... | @@ -263,6 +263,7 @@ |
| 263 | 263 | "onum", |
| 264 | 264 | "opages", |
| 265 | 265 | "opath", |
| 266 | + "orred", | |
| 266 | 267 | "ossl", |
| 267 | 268 | "ostream", |
| 268 | 269 | "ostringstreams", |
| ... | ... | @@ -308,6 +309,7 @@ |
| 308 | 309 | "qpdf", |
| 309 | 310 | "qpdfacroformdocumenthelper", |
| 310 | 311 | "qpdfannotationobjecthelper", |
| 312 | + "qpdfconstants", | |
| 311 | 313 | "qpdfcrypto", |
| 312 | 314 | "qpdfcryptoimpl", |
| 313 | 315 | "qpdfcryptoprovider", |
| ... | ... | @@ -336,6 +338,7 @@ |
| 336 | 338 | "qpdfstreamfilter", |
| 337 | 339 | "qpdfsystemerror", |
| 338 | 340 | "qpdftokenizer", |
| 341 | + "qpdftypes", | |
| 339 | 342 | "qpdfwriter", |
| 340 | 343 | "qpdfx", |
| 341 | 344 | "qpdfxrefentry", |
| ... | ... | @@ -415,6 +418,7 @@ |
| 415 | 418 | "unencrypted", |
| 416 | 419 | "unfilterable", |
| 417 | 420 | "unparse", |
| 421 | + "unretrieved", | |
| 418 | 422 | "upages", |
| 419 | 423 | "upass", |
| 420 | 424 | "urandom", | ... | ... |
include/qpdf/QPDFObjectHandle.hh
| ... | ... | @@ -320,8 +320,9 @@ class QPDFObjectHandle |
| 320 | 320 | QPDF_DLL |
| 321 | 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 | 326 | QPDF_DLL |
| 326 | 327 | bool isBool(); |
| 327 | 328 | QPDF_DLL | ... | ... |
include/qpdf/qpdf-c.h
| ... | ... | @@ -535,7 +535,7 @@ extern "C" { |
| 535 | 535 | * object. All QPDFObjectHandle objects are deleted when they are |
| 536 | 536 | * no longer referenced. Releasing an object handle simply |
| 537 | 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 | 539 | * handle, the object is safely part of the dictionary or array. |
| 540 | 540 | * Similarly, any other object handle refering to the object remains |
| 541 | 541 | * valid. Explicitly releasing an object handle is essentially the | ... | ... |