diff options
Diffstat (limited to 'src/algebra/string.spad.pamphlet')
-rw-r--r-- | src/algebra/string.spad.pamphlet | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/algebra/string.spad.pamphlet b/src/algebra/string.spad.pamphlet index 9ea5e74f..311fb726 100644 --- a/src/algebra/string.spad.pamphlet +++ b/src/algebra/string.spad.pamphlet @@ -38,10 +38,8 @@ Character: OrderedFinite() with ++ \spad{space} provides the blank character. quote: % ++ \spad{quote} provides the string quote character, \spad{"}. - escape: % - ++ \spad{escape} provides the escape character, \spad{_}, which - ++ is used to allow quotes and other characters {\em within} - ++ strings. + underscore: % + ++ \spad{underscore} designates the underbar character. newline: % ++ \spad{newline} designates the new line character. carriageReturn: % @@ -112,7 +110,7 @@ Character: OrderedFinite() with random() == char(random(size())$NNI) space == %ccst " " quote == %ccst "_"" - escape == %ccst "__" + underscore == %ccst "__" newline == %ccst "\n" carriageReturn == %ccst "\r" linefeed == %i2c 10 |