1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

Fix typo in lispref "Creating Strings" section

* doc/lispref/strings.texi (String Basics): Fix typo.
This commit is contained in:
Xiyue Deng 2024-01-11 14:41:41 +01:00 committed by Stephen Berman
parent 5df57f1792
commit b825962ea8

View file

@ -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.