diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-29 07:34:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-29 07:34:21 -0700 |
commit | 701a44dfeaa18a0602aaf86339a63077f2d19651 (patch) | |
tree | 421a3ab0be12666bd20a31e9475851619e029afa | |
parent | 5ae27cef48a3802b51dd77896e13926605c21037 (diff) | |
download | txr-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.1 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |