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 | 63ca112d815a9434144c0b7d1a0ce0a269bed6bf (patch) | |
tree | 6ea21d2f7a16ea90b203dec94b9731cd58f35530 | |
parent | efda685f03c7102f38a20c3357292faa1f547b5f (diff) | |
download | txr-63ca112d815a9434144c0b7d1a0ce0a269bed6bf.tar.gz txr-63ca112d815a9434144c0b7d1a0ce0a269bed6bf.tar.bz2 txr-63ca112d815a9434144c0b7d1a0ce0a269bed6bf.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.
-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") |