summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-29 07:34:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-29 07:34:21 -0700
commit701a44dfeaa18a0602aaf86339a63077f2d19651 (patch)
tree421a3ab0be12666bd20a31e9475851619e029afa
parent5ae27cef48a3802b51dd77896e13926605c21037 (diff)
downloadtxr-701a44dfeaa18a0602aaf86339a63077f2d19651.tar.gz
txr-701a44dfeaa18a0602aaf86339a63077f2d19651.tar.bz2
txr-701a44dfeaa18a0602aaf86339a63077f2d19651.zip
doc: mistake in several path-cat examples.
* txr.1: Corrections to three examples, where one operand is empty, and thus the other is returned.
-rw-r--r--txr.16
1 files changed, 3 insertions, 3 deletions
diff --git a/txr.1 b/txr.1
index db8bba50..3f7a0dc5 100644
--- a/txr.1
+++ b/txr.1
@@ -57426,9 +57426,9 @@ itself.
.verb
(path-cat "" "") --> ""
- (path-cat "" ".") --> ""
- (path-cat "." "") --> ""
- (path-cat "." ".") --> ""
+ (path-cat "" ".") --> "."
+ (path-cat "." "") --> "."
+ (path-cat "." ".") --> "."
(path-cat "abc" ".") --> "abc"
(path-cat "." "abc") --> "abc"