1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

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>.
This commit is contained in:
Tomas Volf 2025-02-28 01:02:29 +01:00 committed by Daniel Llorens
parent c8a169d388
commit 46a0ee7779
5 changed files with 5 additions and 5 deletions

View file

@ -726,7 +726,7 @@ mutually-recursive datatypes <Node> and <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 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 --

View file

@ -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"
#\@@
#\@@)

View file

@ -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 --

View file

@ -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

View file

@ -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\"
#\\@@
#\\@@)