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
commita0c6c03a650109060a111ba63f12454c4e1ca4d4 (patch)
tree421a3ab0be12666bd20a31e9475851619e029afa
parent6608ed3f2581043fb78c9bd60d867d33ef846e93 (diff)
downloadtxr-a0c6c03a650109060a111ba63f12454c4e1ca4d4.tar.gz
txr-a0c6c03a650109060a111ba63f12454c4e1ca4d4.tar.bz2
txr-a0c6c03a650109060a111ba63f12454c4e1ca4d4.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"