Commit 81205e007b58199c31af6db762757d182a5737f0

Authored by Jay Berkenbilt
1 parent 12b15911

Spell check

ispell-words
... ... @@ -117,6 +117,7 @@ argJsonHelp
117 117 argJsonKey
118 118 argJsonObject
119 119 argKeepFilesOpen
  120 +argKeepFilesOpenThreshold
120 121 argKeepInlineImages
121 122 argLinearize
122 123 argLinearizePass
... ... @@ -142,6 +143,7 @@ argPreserveUnreferencedResources
142 143 argProgress
143 144 argQdf
144 145 argRawStreamData
  146 +argRemovePageLabels
145 147 argRotate
146 148 args
147 149 argShowEncryption
... ... @@ -688,6 +690,7 @@ fullname
688 690 fullpad
689 691 func
690 692 fv
  693 +fvisibility
691 694 fweimer
692 695 fwrite
693 696 fx
... ... @@ -1450,6 +1453,7 @@ pdfs
1450 1453 pdh
1451 1454 pdlin
1452 1455 pe
  1456 +performant
1453 1457 perl
1454 1458 persistAcrossFinish
1455 1459 Pfeifle
... ... @@ -2044,15 +2048,21 @@ Wconversion
2044 2048 wcslen
2045 2049 Weimer
2046 2050 werror
  2051 +wfilename
  2052 +wfilenamep
2047 2053 WFLAGS
  2054 +wfopen
2048 2055 whoami
2049 2056 WinAnsi
2050 2057 winansi
2051 2058 WinAnsiEncoding
2052 2059 wincrypt
2053 2060 WindowsCryptProvider
  2061 +wlen
2054 2062 wmain
2055 2063 wmatrix
  2064 +wmode
  2065 +wmodep
2056 2066 Wold
2057 2067 wrapInArray
2058 2068 writeAppearance
... ...
libqpdf/QPDF_Real.cc
... ... @@ -26,7 +26,7 @@ JSON
26 26 QPDF_Real::getJSON()
27 27 {
28 28 // While PDF allows .x or -.x, JSON does not. Rather than
29   - // convering from string to double and back, just handle this as a
  29 + // converting from string to double and back, just handle this as a
30 30 // special case for JSON.
31 31 std::string result;
32 32 if (this->val.length() == 0)
... ...