2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 09:20:52 +00:00

Typos in comments

This commit is contained in:
Jay Berkenbilt 2021-12-01 14:34:19 -05:00
parent c75577f9d6
commit 73d70902e0
3 changed files with 8 additions and 3 deletions

View File

@ -263,6 +263,7 @@
"onum", "onum",
"opages", "opages",
"opath", "opath",
"orred",
"ossl", "ossl",
"ostream", "ostream",
"ostringstreams", "ostringstreams",
@ -308,6 +309,7 @@
"qpdf", "qpdf",
"qpdfacroformdocumenthelper", "qpdfacroformdocumenthelper",
"qpdfannotationobjecthelper", "qpdfannotationobjecthelper",
"qpdfconstants",
"qpdfcrypto", "qpdfcrypto",
"qpdfcryptoimpl", "qpdfcryptoimpl",
"qpdfcryptoprovider", "qpdfcryptoprovider",
@ -336,6 +338,7 @@
"qpdfstreamfilter", "qpdfstreamfilter",
"qpdfsystemerror", "qpdfsystemerror",
"qpdftokenizer", "qpdftokenizer",
"qpdftypes",
"qpdfwriter", "qpdfwriter",
"qpdfx", "qpdfx",
"qpdfxrefentry", "qpdfxrefentry",
@ -415,6 +418,7 @@
"unencrypted", "unencrypted",
"unfilterable", "unfilterable",
"unparse", "unparse",
"unretrieved",
"upages", "upages",
"upass", "upass",
"urandom", "urandom",

View File

@ -320,8 +320,9 @@ class QPDFObjectHandle
QPDF_DLL QPDF_DLL
char const* getTypeName(); char const* getTypeName();
// Exactly one of these will return true for any initialized object. Operator // Exactly one of these will return true for any initialized
// and InlineImage are only allowed in content streams. // object. Operator and InlineImage are only allowed in content
// streams.
QPDF_DLL QPDF_DLL
bool isBool(); bool isBool();
QPDF_DLL QPDF_DLL

View File

@ -535,7 +535,7 @@ extern "C" {
* object. All QPDFObjectHandle objects are deleted when they are * object. All QPDFObjectHandle objects are deleted when they are
* no longer referenced. Releasing an object handle simply * no longer referenced. Releasing an object handle simply
* invalidates it. For example, if you create an object, * invalidates it. For example, if you create an object,
* add it to an existing dictionary or array, and then release it's * add it to an existing dictionary or array, and then release its
* handle, the object is safely part of the dictionary or array. * handle, the object is safely part of the dictionary or array.
* Similarly, any other object handle refering to the object remains * Similarly, any other object handle refering to the object remains
* valid. Explicitly releasing an object handle is essentially the * valid. Explicitly releasing an object handle is essentially the