aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiyue Deng2024-01-11 14:41:41 +0100
committerStephen Berman2024-01-11 14:41:41 +0100
commitb825962ea840348bbde0c834ca398458a06fbb8b (patch)
treefdbac88b862cd4265456306093009261ba99007c
parent5df57f1792ee31fd3a00734dd754cc11bba9dd9c (diff)
downloademacs-b825962ea840348bbde0c834ca398458a06fbb8b.tar.gz
emacs-b825962ea840348bbde0c834ca398458a06fbb8b.zip
Fix typo in lispref "Creating Strings" section
* doc/lispref/strings.texi (String Basics): Fix typo.
-rw-r--r--doc/lispref/strings.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 7097de49064..4fe94f78cba 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -43,7 +43,7 @@ integer is a character or not is determined only by how it is used.
43Emacs. 43Emacs.
44 44
45 A string is a fixed sequence of characters. It is a type of 45 A string is a fixed sequence of characters. It is a type of
46sequence called a @dfn{array}, meaning that its length is fixed and 46sequence called an @dfn{array}, meaning that its length is fixed and
47cannot be altered once it is created (@pxref{Sequences Arrays 47cannot be altered once it is created (@pxref{Sequences Arrays
48Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated 48Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated
49by a distinguished character code. 49by a distinguished character code.