]> granicus.if.org Git - libexpat/commitdiff
Fix typos
authorJakub Wilk <jwilk@jwilk.net>
Thu, 3 Aug 2017 20:50:03 +0000 (22:50 +0200)
committerJakub Wilk <jwilk@jwilk.net>
Thu, 3 Aug 2017 20:50:03 +0000 (22:50 +0200)
expat/Changes
expat/doc/reference.html

index ab27ea0c2a2749c1781540fe3f4ed342251e5e0e..fc8da67623dee4576192e2c0ebdef295c7abfc1c 100644 (file)
@@ -83,7 +83,7 @@ Release 2.2.2 Wed July 12 2017
              #68  Fix "./buildconf.sh && ./configure" for some versions
                     of Dash for /bin/sh
              #72  CMake: Ease use of Expat in context of a parent project
-                    with multipe CMakeLists.txt files
+                    with multiple CMakeLists.txt files
              #72  CMake: Resolve mistaken executable permissions
              #76  Address compile warning with -DNDEBUG (not recommended!)
              #77  Address compile warning about macro redefinition
@@ -299,7 +299,7 @@ Release 2.1.0 Sat March 24 2012
           #2855609: Dangling positionPtr after error.
           #2990652: CMake support.
           #3010819: UNEXPECTED_STATE with a trailing "%" in entity value.
-          #3206497: Unitialized memory returned from XML_Parse.
+          #3206497: Uninitialized memory returned from XML_Parse.
           #3287849: make check fails on mingw-w64.
         - Patches:
           #1749198: pkg-config support.
index 350b9b67ccac45a4fcab6ba6fb0cb084a04509a8..efc19f485f1e721afc4390ccb051827baec16c1c 100644 (file)
@@ -31,7 +31,7 @@ the underlying XML parser for the open source Mozilla project, Perl's
 other open-source XML parsers.</p>
 
 <p>This library is the creation of James Clark, who's also given us
-groff (an nroff look-alike), Jade (an implemention of ISO's DSSSL
+groff (an nroff look-alike), Jade (an implementation of ISO's DSSSL
 stylesheet language for SGML), XP (a Java XML parser package), XT (a
 Java XSL engine).  James was also the technical lead on the XML
 Working Group at W3C that produced the XML specification.</p>
@@ -360,7 +360,7 @@ off by default.</dd>
 <dd>The number of input bytes of markup context which the parser will
 ensure are available for reporting via <code><a href=
 "#XML_GetInputContext" >XML_GetInputContext</a></code>.  This is
-normally set to 1024, and must be set to a positive interger.  If this
+normally set to 1024, and must be set to a positive integer.  If this
 is not defined, the input context will not be available and <code><a
 href= "#XML_GetInputContext" >XML_GetInputContext</a></code> will
 always report NULL.  Without this, Expat has a smaller memory
@@ -373,7 +373,7 @@ the right MSVC magic annotations correct.  This is ignored on other
 platforms.</dd>
 
 <dt>XML_ATTR_INFO</dt>
-<dd>If defined, makes the the additional function <code><a href=
+<dd>If defined, makes the additional function <code><a href=
 "#XML_GetAttributeInfo" >XML_GetAttributeInfo</a></code> available
 for reporting attribute byte offsets.</dd>
 </dl>
@@ -739,7 +739,7 @@ arguments:</p>
 <dt><code>XML_PARAM_ENTITY_PARSING_NEVER</code></dt>
 <dd>Don't parse parameter entities or the external subset</dd>
 <dt><code>XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE</code></dt>
-<dd>Parse parameter entites and the external subset unless
+<dd>Parse parameter entities and the external subset unless
 <code>standalone</code> was set to "yes" in the XML declaration.</dd>
 <dt><code>XML_PARAM_ENTITY_PARSING_ALWAYS</code></dt>
 <dd>Always parse parameter entities and the external subset</dd>
@@ -767,7 +767,7 @@ include</p>
 
   <li>Stopping parsing completely (simply free or reset the parser
   instead of resuming in the outer parsing loop).  This can be useful
-  if a application-domain error is found in the XML being parsed or if
+  if an application-domain error is found in the XML being parsed or if
   the result of the parse is determined not to be useful after
   all.</li>
 </ul>
@@ -1564,7 +1564,7 @@ at most once per parsed (external) entity. The optional application
 data pointer <code>encodingHandlerData</code> will be passed back to
 the handler.</p>
 
-<p>The map array contains information for every possible possible leading
+<p>The map array contains information for every possible leading
 byte in a byte sequence. If the corresponding value is &gt;= 0, then it's
 a single byte sequence and the byte encodes that Unicode value. If the
 value is -1, then that byte is invalid as the initial byte in a sequence.
@@ -1999,7 +1999,7 @@ return NULL.</p>
 <h3><a name="miscellaneous">Miscellaneous functions</a></h3>
 
 <p>The functions in this section either obtain state information from
-the parser or can be used to dynamicly set parser options.</p>
+the parser or can be used to dynamically set parser options.</p>
 
 <pre class="fcndec" id="XML_SetUserData">
 void XMLCALL