diff options
| author | Xiyue Deng | 2024-01-11 14:41:41 +0100 |
|---|---|---|
| committer | Stephen Berman | 2024-01-11 14:41:41 +0100 |
| commit | b825962ea840348bbde0c834ca398458a06fbb8b (patch) | |
| tree | fdbac88b862cd4265456306093009261ba99007c | |
| parent | 5df57f1792ee31fd3a00734dd754cc11bba9dd9c (diff) | |
| download | emacs-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.texi | 2 |
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. | |||
| 43 | Emacs. | 43 | Emacs. |
| 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 |
| 46 | sequence called a @dfn{array}, meaning that its length is fixed and | 46 | sequence called an @dfn{array}, meaning that its length is fixed and |
| 47 | cannot be altered once it is created (@pxref{Sequences Arrays | 47 | cannot be altered once it is created (@pxref{Sequences Arrays |
| 48 | Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated | 48 | Vectors}). Unlike in C, Emacs Lisp strings are @emph{not} terminated |
| 49 | by a distinguished character code. | 49 | by a distinguished character code. |