aboutsummaryrefslogtreecommitdiffstats
path: root/trio.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-12-31 16:16:02 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-12-31 16:16:02 +0000
commitcbaf399537a1fb69ef97b079e4cb553869aaa4d9 (patch)
tree05c7802f8e0c366451d19a827cb7d4186d31825c /trio.c
parent7f9a6806ed3d37063e159b257aec029ffda1e1af (diff)
downloadandroid_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.tar.gz
android_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.tar.bz2
android_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.zip
applied 42 documentation patches from Charlie Bozeman. Regenerated the
* *.c include/libxml/*.h doc/html/*: applied 42 documentation patches from Charlie Bozeman. Regenerated the HTML docs. Daniel
Diffstat (limited to 'trio.c')
-rw-r--r--trio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/trio.c b/trio.c
index 1d6ea6a4..76d46baf 100644
--- a/trio.c
+++ b/trio.c
@@ -825,7 +825,7 @@ TrioGetPosition(const char *format,
* TrioFindNamespace [private]
*
* Find registered user-defined specifier.
- * The prev argument is used for optimisation only.
+ * The prev argument is used for optimization only.
*/
static userdef_T *
TrioFindNamespace(const char *name, userdef_T **prev)
@@ -4025,7 +4025,7 @@ trio_print_pointer(void *ref,
* The subtraction of the null pointer is a workaround
* to avoid a compiler warning. The performance overhead
* is negligible (and likely to be removed by an
- * optimising compiler). The (char *) casting is done
+ * optimizing compiler). The (char *) casting is done
* to please ANSI C++.
*/
number = (trio_uintmax_t)((char *)pointer - (char *)0);
@@ -4264,7 +4264,7 @@ TrioGetCharacterClass(const char *format,
if (internalCollationUnconverted)
{
- /* Lazy evalutation of collation array */
+ /* Lazy evaluation of collation array */
TrioGetCollation();
internalCollationUnconverted = FALSE;
}
@@ -4832,7 +4832,7 @@ TrioReadDouble(trio_T *self,
}
if (StrEqual(doubleString, NAN_LOWER))
{
- /* NaN must not have a preceeding + nor - */
+ /* NaN must not have a preceding + nor - */
*target = trio_nan();
return TRUE;
}