summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2009-04-29 03:47:37 +0200
committerBruno Haible <bruno@clisp.org>2009-04-29 03:51:11 +0200
commit762d2dcffdc4cb172ba2088fde06d9f01c1d761c (patch)
treed3a87617e23a71acd44e70d579b42d7e574bbf82
parentcccd2787a7a3049e290db81121671f2d463a3bca (diff)
downloadlibunistring-762d2dcffdc4cb172ba2088fde06d9f01c1d761c.tar.gz
Fix typos.
-rw-r--r--ChangeLog8
-rw-r--r--doc/libunistring.texi2
-rw-r--r--doc/unictype.texi4
-rw-r--r--doc/uniname.texi2
-rw-r--r--doc/uninorm.texi2
-rw-r--r--doc/unistr.texi2
6 files changed, 14 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a1b897a..f70f9bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-04-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
+
+ * doc/libunistring.texi: Fix typos.
+ * doc/unistr.texi: Likewise.
+ * doc/uniname.texi: Likewise.
+ * doc/unictype.texi: Likewise.
+ * doc/uninorm.texi: Likewise.
+
2009-04-28 Bruno Haible <bruno@clisp.org>
Make VPATH builds work off a git checkout.
diff --git a/doc/libunistring.texi b/doc/libunistring.texi
index f293e02..5b6b617 100644
--- a/doc/libunistring.texi
+++ b/doc/libunistring.texi
@@ -604,7 +604,7 @@ Unfortunately, this API and its implementation has numerous problems:
@itemize
@item
On AIX and Windows platforms, @code{wchar_t} is a 16-bit type. This
-means that it can never accomodate an entire Unicode character. Either
+means that it can never accommodate an entire Unicode character. Either
the @code{wchar_t *} strings are limited to characters in UCS-2 (the
``Basic Multilingual Plane'' of Unicode), or --- if @code{wchar_t *}
strings are encoded in UTF-16 --- a @code{wchar_t} represents only half
diff --git a/doc/unictype.texi b/doc/unictype.texi
index 8396d68..4dbcb15 100644
--- a/doc/unictype.texi
+++ b/doc/unictype.texi
@@ -57,7 +57,7 @@ information for all Unicode characters.
@deftp Type uc_general_category_t
This data type denotes a general category value. It is an immediate type that
-can be copied by simple assignment, without involving memory allcation. It is
+can be copied by simple assignment, without involving memory allocation. It is
not an array type.
@end deftp
@@ -675,7 +675,7 @@ The following type designates a property on Unicode characters.
@deftp Type uc_property_t
This data type denotes a boolean property on Unicode characters. It is an
immediate type that can be copied by simple assignment, without involving
-memory allcation. It is not an array type.
+memory allocation. It is not an array type.
@end deftp
Many Unicode properties are predefined.
diff --git a/doc/uniname.texi b/doc/uniname.texi
index b3d9a38..66461be 100644
--- a/doc/uniname.texi
+++ b/doc/uniname.texi
@@ -6,7 +6,7 @@ This include file implements the association between a Unicode character and
its name.
The name of a Unicode character allows to distinguish it from other, similar
-looking characters. For example, the character @samp{x} has tha name
+looking characters. For example, the character @samp{x} has the name
@code{"LATIN SMALL LETTER X"} and is therefore different from the character
named @code{"MULTIPLICATION SIGN"}.
diff --git a/doc/uninorm.texi b/doc/uninorm.texi
index 2dcafc7..d4206d5 100644
--- a/doc/uninorm.texi
+++ b/doc/uninorm.texi
@@ -110,7 +110,7 @@ The following constant denotes the maximum size of decomposition of a single
Unicode character.
@deftypevr Macro {unsigned int} UC_DECOMPOSITION_MAX_LENGTH
-This macro expands to a constant that is the required size of buffer oassed to
+This macro expands to a constant that is the required size of buffer passed to
the @code{uc_decomposition} and @code{uc_canonical_decomposition} functions.
@end deftypevr
diff --git a/doc/unistr.texi b/doc/unistr.texi
index 8c51c2f..9c6261b 100644
--- a/doc/unistr.texi
+++ b/doc/unistr.texi
@@ -423,7 +423,7 @@ This function is similar to @posixfunc{strrchr} and @posixfunc{wcsrchr}, except
that it operates on Unicode strings.
@end deftypefun
-The following functions seach for the first occurrence of some Unicode
+The following functions search for the first occurrence of some Unicode
character in or outside a given set of Unicode characters.
@deftypefun size_t u8_strcspn (const uint8_t *@var{str}, const uint8_t *@var{reject})