diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-07-06 21:08:49 +0530 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2025-03-20 13:36:58 -0500 |
commit | 117c398341e8a5c4773e10c2c7e759a1044afabf (patch) | |
tree | b0cd4c8535fc046caddbef072b2bc2f04de2c743 | |
parent | c6e08266670d5bf63f36599aa3329f90f9433744 (diff) | |
download | guile-117c398341e8a5c4773e10c2c7e759a1044afabf.tar.gz |
Fix typo in transform-string docstring
* module/texinfo/string-utils.scm (transform-string): Replace "te" with
"the" in docstring.
Fixes: 42228
-rw-r--r-- | module/texinfo/string-utils.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/texinfo/string-utils.scm b/module/texinfo/string-utils.scm index 625d1e535..4b860fe74 100644 --- a/module/texinfo/string-utils.scm +++ b/module/texinfo/string-utils.scm @@ -52,8 +52,8 @@ character as an argument, and the returned value is sent to the output string via @samp{display}. If @var{replace} is anything else, it is sent through the output string via @samp{display}. -Note that te replacement for the matched characters does not need to -be a single character. That is what differentiates this function from +Note that the replacement for the matched characters does not need to be +a single character. That is what differentiates this function from @samp{string-map}, and what makes it useful for applications such as converting @samp{#\\&} to @samp{\"&\"} in web page text. Some other functions in this module are just wrappers around common uses of |