Commit b6d1dffaaa8fa875b9721999163ce2337070ad32

Authored by Jay Berkenbilt
1 parent c7e877b8

Spell check

cSpell.json
@@ -107,6 +107,7 @@ @@ -107,6 +107,7 @@
107 "drequire", 107 "drequire",
108 "dshow", 108 "dshow",
109 "dtdvalid", 109 "dtdvalid",
  110 + "dwindows",
110 "ebra", 111 "ebra",
111 "ecks", 112 "ecks",
112 "efdh", 113 "efdh",
@@ -273,6 +274,7 @@ @@ -273,6 +274,7 @@
273 "msvc's", 274 "msvc's",
274 "msys", 275 "msys",
275 "multithreaded", 276 "multithreaded",
  277 + "municode",
276 "mutators", 278 "mutators",
277 "namelink", 279 "namelink",
278 "nbsp", 280 "nbsp",
@@ -372,6 +374,7 @@ @@ -372,6 +374,7 @@
372 "qpdfacroformdocumenthelper", 374 "qpdfacroformdocumenthelper",
373 "qpdfannotationobjecthelper", 375 "qpdfannotationobjecthelper",
374 "qpdfargparser", 376 "qpdfargparser",
  377 + "qpdfbuild",
375 "qpdfconstants", 378 "qpdfconstants",
376 "qpdfcrypto", 379 "qpdfcrypto",
377 "qpdfcryptoimpl", 380 "qpdfcryptoimpl",
@@ -436,6 +439,7 @@ @@ -436,6 +439,7 @@
436 "scarff", 439 "scarff",
437 "seekable", 440 "seekable",
438 "segfaulting", 441 "segfaulting",
  442 + "setargv",
439 "setjmp", 443 "setjmp",
440 "sharedresources", 444 "sharedresources",
441 "singlehtml", 445 "singlehtml",
@@ -469,9 +473,11 @@ @@ -469,9 +473,11 @@
469 "subkeys", 473 "subkeys",
470 "subramanyam", 474 "subramanyam",
471 "swversion", 475 "swversion",
  476 + "sysroot",
472 "syuu", 477 "syuu",
473 "tbuf", 478 "tbuf",
474 "testcase", 479 "testcase",
  480 + "testcov",
475 "testfile", 481 "testfile",
476 "texlive", 482 "texlive",
477 "tgen", 483 "tgen",
@@ -521,6 +527,7 @@ @@ -521,6 +527,7 @@
521 "vtable", 527 "vtable",
522 "wchar", 528 "wchar",
523 "wconversion", 529 "wconversion",
  530 + "wcslen",
524 "weimer", 531 "weimer",
525 "werror", 532 "werror",
526 "wfilename", 533 "wfilename",
@@ -535,6 +542,8 @@ @@ -535,6 +542,8 @@
535 "wordsize", 542 "wordsize",
536 "wpath", 543 "wpath",
537 "wrename", 544 "wrename",
  545 + "wsetargv",
  546 + "wshadow",
538 "wsign", 547 "wsign",
539 "wunlink", 548 "wunlink",
540 "xgen", 549 "xgen",
manual/contributing.rst
@@ -33,7 +33,7 @@ differences, ``clang-format`` is authoritative. It is not possible to @@ -33,7 +33,7 @@ differences, ``clang-format`` is authoritative. It is not possible to
33 make ``cc-mode`` and ``clang-format`` exactly match since the syntax 33 make ``cc-mode`` and ``clang-format`` exactly match since the syntax
34 parser in emacs is not as sophisticated. 34 parser in emacs is not as sophisticated.
35 35
36 -Blocks of code that should not be formatted can be surrouned by the 36 +Blocks of code that should not be formatted can be surrounded by the
37 comments ``// clang-format off`` and ``// clang-format on``. Sometimes 37 comments ``// clang-format off`` and ``// clang-format on``. Sometimes
38 clang-format tries to combine lines in ways that are undesirable. In 38 clang-format tries to combine lines in ways that are undesirable. In
39 this case, we follow a convention of adding a comment ``// 39 this case, we follow a convention of adding a comment ``//
manual/design.rst
@@ -68,7 +68,7 @@ The primary class for interacting with PDF objects is @@ -68,7 +68,7 @@ The primary class for interacting with PDF objects is
68 ``QPDFObjectHandle``. Instances of this class can be passed around by 68 ``QPDFObjectHandle``. Instances of this class can be passed around by
69 value, copied, stored in containers, etc. with very low overhead. The 69 value, copied, stored in containers, etc. with very low overhead. The
70 ``QPDFObjectHandle`` object contains an internal shared pointer to an 70 ``QPDFObjectHandle`` object contains an internal shared pointer to an
71 -underyling ``QPDFObject``. Instances of ``QPDFObjectHandle`` created 71 +underlying ``QPDFObject``. Instances of ``QPDFObjectHandle`` created
72 by reading from a file will always contain a reference back to the 72 by reading from a file will always contain a reference back to the
73 ``QPDF`` object from which they were created. A ``QPDFObjectHandle`` 73 ``QPDF`` object from which they were created. A ``QPDFObjectHandle``
74 may be direct or indirect. If indirect, the ``QPDFObject`` shared 74 may be direct or indirect. If indirect, the ``QPDFObject`` shared
spell-check
@@ -11,6 +11,7 @@ @@ -11,6 +11,7 @@
11 # cspell can be installed with `npm install -g cspell`. 11 # cspell can be installed with `npm install -g cspell`.
12 12
13 # cspell does its own expansion of shell wildcards. 13 # cspell does its own expansion of shell wildcards.
  14 +cd $(dirname $0)
14 cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \ 15 cspell '**/*.hh' 'include/qpdf/*.h' '**/*.cc' \
15 'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \ 16 'manual/*.rst' 'manual/*.in' 'manual/_ext/*.py' \
16 '**/CMakeLists.txt' ChangeLog 'README*' TODO 17 '**/CMakeLists.txt' ChangeLog 'README*' TODO