diff options
| author | Eli Zaretskii | 2021-01-02 10:27:28 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2021-01-02 10:27:28 +0200 |
| commit | a7c2793efe503ad7ad9f2d6fc73555da3a4cdaea (patch) | |
| tree | a404e20f44f2180400d7b9be30f1cda1bb6ca800 | |
| parent | ec1e1f80e6fa6a219f78969e495c0d1022bd0750 (diff) | |
| download | emacs-a7c2793efe503ad7ad9f2d6fc73555da3a4cdaea.tar.gz emacs-a7c2793efe503ad7ad9f2d6fc73555da3a4cdaea.zip | |
Fix last change
* doc/lispref/strings.texi (Creating Strings): Improve wording of
last change. (Bug#45516)
| -rw-r--r-- | doc/lispref/strings.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index a033168a00d..e4981cd6030 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -120,9 +120,9 @@ character (i.e., an integer), @code{nil} otherwise. | |||
| 120 | @cindex string creation | 120 | @cindex string creation |
| 121 | 121 | ||
| 122 | The following functions create strings, either from scratch, or by | 122 | The following functions create strings, either from scratch, or by |
| 123 | putting strings together, or by taking them apart. (For functions that | 123 | putting strings together, or by taking them apart. (For functions |
| 124 | create strings based on searching the contents of other strings (like | 124 | that create strings based on the modified contents of other strings, |
| 125 | @code{string-replace} and @code{replace-regexp-in-string}), see | 125 | like @code{string-replace} and @code{replace-regexp-in-string}, see |
| 126 | @ref{Search and Replace}.) | 126 | @ref{Search and Replace}.) |
| 127 | 127 | ||
| 128 | @defun make-string count character &optional multibyte | 128 | @defun make-string count character &optional multibyte |