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