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 | a0c6c03a650109060a111ba63f12454c4e1ca4d4 (patch) | |
tree | 421a3ab0be12666bd20a31e9475851619e029afa | |
parent | 6608ed3f2581043fb78c9bd60d867d33ef846e93 (diff) | |
download | txr-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.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" |