]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos in case-conversion descriptions
authorRobert Pluim <rpluim@gmail.com>
Tue, 5 Nov 2024 11:33:49 +0000 (12:33 +0100)
committerEshel Yaron <me@eshelyaron.com>
Sat, 9 Nov 2024 15:47:10 +0000 (16:47 +0100)
* doc/lispref/nonascii.texi (Character Properties): Fix typos.
* doc/lispref/strings.texi (Case Conversion): Fix typos.
(Case Tables): Fix typos.

(cherry picked from commit fb55431c44ec00b05122eaa09d310c1dcf2684b1)

doc/lispref/nonascii.texi
doc/lispref/strings.texi

index cb32c7671e750422679c6e6ca1ca69eb365335bd..87503a45075143d75a262c5f95fd66763afcfadc 100644 (file)
@@ -631,30 +631,30 @@ is @code{nil}, which means the character itself.
 @item special-uppercase
 Corresponds to Unicode language- and context-independent special upper-casing
 rules.  The value of this property is a string (which may be empty).  For
-example mapping for U+00DF @sc{latin small letter sharp s} is
+example for U+00DF @sc{latin small letter sharp s} the value is
 @code{"SS"}.  This mapping overrides the @code{uppercase} property, and
 thus the current case table.  For characters with no special mapping,
-the value is @code{nil}, which means @code{uppercase} property needs to
+the value is @code{nil}, which means the @code{uppercase} property needs to
 be consulted instead.
 
 @item special-lowercase
 Corresponds to Unicode language- and context-independent special
 lower-casing rules.  The value of this property is a string (which may
-be empty).  For example mapping for U+0130 @sc{latin capital letter i
-with dot above} the value is @code{"i\u0307"} (i.e. 2-character string
+be empty).  For example for U+0130 @sc{latin capital letter i
+with dot above} the value is @code{"i\u0307"} (i.e. 2-character string
 consisting of @sc{latin small letter i} followed by U+0307
 @sc{combining dot above}).  This mapping overrides the @code{lowercase}
 property, and thus the current case table.  For characters with no
-special mapping, the value is @code{nil}, which means @code{lowercase}
+special mapping, the value is @code{nil}, which means the @code{lowercase}
 property needs to be consulted instead.
 
 @item special-titlecase
 Corresponds to Unicode unconditional special title-casing rules.  The value of
-this property is a string (which may be empty).  For example mapping for
+this property is a string (which may be empty).  For example for
 U+FB01 @sc{latin small ligature fi} the value is @code{"Fi"}.  This
 mapping overrides the @code{titlecase} property, and thus the current
 case table.  For characters with no special mapping, the value is
-@code{nil}, which means @code{titlecase} property needs to be consulted
+@code{nil}, which means the @code{titlecase} property needs to be consulted
 instead.
 @end table
 
index c2b18387ad5e20b9667bb30200ade541f6760c16..efeddf1a20c66a6dd6d7e55aa4b8534e2987e7ac 100644 (file)
@@ -1593,7 +1593,7 @@ be made.
 
   Other characters can also have special case-conversion rules.  They
 all have non-@code{nil} character properties @code{special-uppercase},
-@code{special-lowercase} or @code{special-titlecase} (@pxref{Character
+@code{special-lowercase}, or @code{special-titlecase} (@pxref{Character
 Properties}) defined by the Unicode Standard.  These properties define
 special case-conversion rules which override the current case table
 (@pxref{Case Tables}).
@@ -1640,11 +1640,11 @@ maps for both lower case and upper case.
   Some characters have special case-conversion rules defined for them,
 which by default override the current case table.  These characters have
 non-@code{nil} character properties @code{special-uppercase},
-@code{special-lowercase} or @code{special-titlecase} (@pxref{Character
+@code{special-lowercase}, or @code{special-titlecase} (@pxref{Character
 Properties}) defined by the Unicode Standard.  An example is U+00DF
 LATIN SMALL LETTER SHARP S, @ss{}, which by default up-cases to the
 string @code{"SS"}, not to U+1E9E LATIN CAPITAL LETTER SHARP S@.  To
-force these characters follow the case-table conversions, set the
+force these characters to follow the case-table conversions, set the
 corresponding Unicode property to @code{nil}:
 
 @example