diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-12-14 18:23:59 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-12-14 18:23:59 -0800 |
commit | e0ae9e1a93a17f536e3e3e24d225fd1f1e397f3b (patch) | |
tree | 6ea21d2f7a16ea90b203dec94b9731cd58f35530 /txr.1 | |
parent | 669506e8824860176cb8a4c25502cb75c742fd06 (diff) | |
download | txr-e0ae9e1a93a17f536e3e3e24d225fd1f1e397f3b.tar.gz txr-e0ae9e1a93a17f536e3e3e24d225fd1f1e397f3b.tar.bz2 txr-e0ae9e1a93a17f536e3e3e24d225fd1f1e397f3b.zip |
doc: example formatting under tuples.
* txr.1: Fix example code that is too wide, causing
a visual problem for standard 80 column man page
formatting.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29163,7 +29163,8 @@ are lists, and not lazy lists. .TP* Examples: .cblk - (tuples 3 #(1 2 3 4 5 6 7 8) 0) -> (#(1 2 3) #(4 5 6) #(7 8 0)) + (tuples 3 #(1 2 3 4 5 6 7 8) 0) -> (#(1 2 3) #(4 5 6) + #(7 8 0)) (tuples 3 "abc") -> ("abc") (tuples 3 "abcd") -> ("abc" "d") (tuples 3 "abcd" #\ez) -> ("abc" "dzz") |