summaryrefslogtreecommitdiff
path: root/module/sxml
diff options
context:
space:
mode:
authorTomas Volf <~@wolfsden.cz>2025-02-28 01:02:29 +0100
committerDaniel Llorens <lloda@sarc.name>2025-02-28 09:58:29 +0100
commit46a0ee777959fa215a5a8cba6cf42888731642a7 (patch)
tree1e64c38923dbf275c9af442a56bac4da1cd96b73 /module/sxml
parentc8a169d38825d5a21da5392b355ca5fc9f33fa55 (diff)
downloadguile-46a0ee777959fa215a5a8cba6cf42888731642a7.tar.gz
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 <https://bugs.gnu.org/76621>. Edited by lloda <lloda@sarc.name>.
Diffstat (limited to 'module/sxml')
-rw-r--r--module/sxml/upstream/SXPath-old.scm2
-rw-r--r--module/sxml/xpath.scm2
2 files changed, 2 insertions, 2 deletions
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 @@
; <Nodeset> 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 @@
;; <Nodeset> 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