diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-07-28 08:37:25 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-07-28 08:37:25 -0700 |
commit | d0ab5e9f63cb2c7582b36a6061e04f27ff53abee (patch) | |
tree | d0521b01f01a9876b9c916b61e4a6f0de433f2ce | |
parent | 1b20769e5245165e9643a96407f27332569c17c7 (diff) | |
download | txr-d0ab5e9f63cb2c7582b36a6061e04f27ff53abee.tar.gz txr-d0ab5e9f63cb2c7582b36a6061e04f27ff53abee.tar.bz2 txr-d0ab5e9f63cb2c7582b36a6061e04f27ff53abee.zip |
* txr.1: typo: List Literals not Lists. Fix
incorrect octal example.
-rw-r--r-- | txr.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1236,7 +1236,7 @@ the TXR pattern language when the quasiliteral occurs in the pattern language. Quasiliterals can be split into multiple lines in the same way as ordinary string literals. -.SS Quasiword Lists Literals +.SS Quasiword List Literals The quasiword list literals (QLL-s) are to quasiliterals what WLL-s are to ordinary literals. (See the above section Word List Literals.) @@ -1299,7 +1299,7 @@ and the upper or lower case letters A through F: Similarly, octal numbers are supported with the prefix #o followed by octal digits: - #b777 ;; 511 + #o777 ;; 511 and binary numbers can be written with a #b prefix: |