summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-12-14 18:23:59 -0800
committerKaz Kylheku <kaz@kylheku.com>2017-12-14 18:23:59 -0800
commite0ae9e1a93a17f536e3e3e24d225fd1f1e397f3b (patch)
tree6ea21d2f7a16ea90b203dec94b9731cd58f35530 /txr.1
parent669506e8824860176cb8a4c25502cb75c742fd06 (diff)
downloadtxr-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.13
1 files changed, 2 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index 98a21ec1..e404866c 100644
--- a/txr.1
+++ b/txr.1
@@ -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")