From 46a0ee777959fa215a5a8cba6cf42888731642a7 Mon Sep 17 00:00:00 2001 From: Tomas Volf <~@wolfsden.cz> Date: Fri, 28 Feb 2025 01:02:29 +0100 Subject: [PATCH] Fix typos in comments. * module/sxml/xpath.scm: Fix typo in a comment. * module/sxml/upstream/SXPath-old.scm: Same. * doc/ref/sxml.texi (SXPath): Reflect in the documentation. * doc/ref/texinfo.texi (string-utils): Fix same typo. * module/texinfo/string-utils.scm (expand-tabs): Same. Fixes . Edited by lloda . --- doc/ref/sxml.texi | 2 +- doc/ref/texinfo.texi | 2 +- module/sxml/upstream/SXPath-old.scm | 2 +- module/sxml/xpath.scm | 2 +- module/texinfo/string-utils.scm | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/ref/sxml.texi b/doc/ref/sxml.texi index fceb30655..108a95d4e 100644 --- a/doc/ref/sxml.texi +++ b/doc/ref/sxml.texi @@ -726,7 +726,7 @@ mutually-recursive datatypes and lends itself well to processing by functional languages. A location path is in fact a composite query over an XPath tree or its -branch. A singe step is a combination of a projection, selection or a +branch. A single step is a combination of a projection, selection or a transitive closure. Multiple steps are combined via join and union operations. This insight allows us to @emph{elegantly} implement XPath as a sequence of projection and filtering primitives -- converters -- diff --git a/doc/ref/texinfo.texi b/doc/ref/texinfo.texi index 64a866b23..268959591 100644 --- a/doc/ref/texinfo.texi +++ b/doc/ref/texinfo.texi @@ -261,7 +261,7 @@ consisting of all the special characters. #\\) => "\\*\\*\\*\\(Example String\\)\\*\\*\\*" -;; also can escape a singe char... +;; also can escape a single char... (escape-special-chars "richardt@@vzavenue.net" #\@@ #\@@) diff --git a/module/sxml/upstream/SXPath-old.scm b/module/sxml/upstream/SXPath-old.scm index cf4526ed6..f46c83441 100644 --- a/module/sxml/upstream/SXPath-old.scm +++ b/module/sxml/upstream/SXPath-old.scm @@ -41,7 +41,7 @@ ; lends itself well to processing by functional languages. ; ; A location path is in fact a composite query over an XPath tree or -; its branch. A singe step is a combination of a projection, selection +; its branch. A single step is a combination of a projection, selection ; or a transitive closure. Multiple steps are combined via join and ; union operations. This insight allows us to _elegantly_ implement ; XPath as a sequence of projection and filtering primitives -- diff --git a/module/sxml/xpath.scm b/module/sxml/xpath.scm index bdf4ae98a..edec2faea 100644 --- a/module/sxml/xpath.scm +++ b/module/sxml/xpath.scm @@ -68,7 +68,7 @@ ;; lends itself well to processing by functional languages. ;; ;; A location path is in fact a composite query over an XPath tree or -;; its branch. A singe step is a combination of a projection, selection +;; its branch. A single step is a combination of a projection, selection ;; or a transitive closure. Multiple steps are combined via join and ;; union operations. This insight allows us to @emph{elegantly} ;; implement XPath as a sequence of projection and filtering primitives diff --git a/module/texinfo/string-utils.scm b/module/texinfo/string-utils.scm index 0d2c994d7..625d1e535 100644 --- a/module/texinfo/string-utils.scm +++ b/module/texinfo/string-utils.scm @@ -134,7 +134,7 @@ of all the special characters. #\\\\) => \"\\\\*\\\\*\\\\*\\\\(Example String\\\\)\\\\*\\\\*\\\\*\" -;; also can escape a singe char... +;; also can escape a single char... (escape-special-chars \"richardt@@vzavenue.net\" #\\@@ #\\@@)