summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiyue Deng <manphiz@gmail.com>2024-01-11 15:18:37 +0100
committerStephen Berman <stephen.berman@gmx.net>2024-01-11 15:18:37 +0100
commit26eb9d3a8a670a1ce2e8b4f0c6418d39329ec41a (patch)
tree5f4d59df6227e8624c1bec82d181d846cb279de1
parent99efe5c80f9d90de6540ef6f78504c0413947a25 (diff)
downloademacs-26eb9d3a8a670a1ce2e8b4f0c6418d39329ec41a.tar.gz
Fix typo in lispref "Creating Strings" section
* doc/lispref/strings.texi (String Basics): Fix typo (bug#68375).
-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 ff5da15fe54..a364fef3aab 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.
Emacs.
A string is a fixed sequence of characters. It is a type of
-sequence called a @dfn{array}, meaning that its length is fixed and
+sequence called an @dfn{array}, meaning that its length is fixed and
cannot be altered once it is created (@pxref{Sequences Arrays
Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated
by a distinguished character code.