diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-06-24 21:31:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-06-24 21:31:19 -0700 |
commit | 482bed2b3e63abc0726690570299284d18f3d1a5 (patch) | |
tree | fb66d35212fa0dfc08aa78faa8a1eb7101e30144 /txr.1 | |
parent | 20afcc8786296ab690ee65e7c0dbc6a96ad1d89a (diff) | |
download | txr-482bed2b3e63abc0726690570299284d18f3d1a5.tar.gz txr-482bed2b3e63abc0726690570299284d18f3d1a5.tar.bz2 txr-482bed2b3e63abc0726690570299284d18f3d1a5.zip |
* txr.1: partition example: wrong use of where function.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14853,8 +14853,8 @@ of one element. (partition '(1 2 3) 1) -> ((1) (2 3)) ;; split the string where there is a "b" - (partition "abcbcbd" (op where @1 (op eql #\eb))) -> ("a" "bc" - "bc" "bd") + (partition "abcbcbd" (op where (op eql #\eb))) -> ("a" "bc" + "bc" "bd") .cble .coNP Function @ partition* |