diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-16 19:23:37 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-17 06:18:24 -0700 |
commit | 5a4f79f5ae2d14a5ed128cbda00055de39b00719 (patch) | |
tree | 61f1e2d4d81e4cc316718f4159300ebcdb3b600a | |
parent | 5a154a6651a791d8dad7b0c93aa5d703b195b739 (diff) | |
download | txr-5a4f79f5ae2d14a5ed128cbda00055de39b00719.tar.gz txr-5a4f79f5ae2d14a5ed128cbda00055de39b00719.tar.bz2 txr-5a4f79f5ae2d14a5ed128cbda00055de39b00719.zip |
doc: fix various trivial typos.
* txr.1: Fix typos in .meIP and .mets lines. Fix a .code that
should be .codn. Add missing closing parenthesis in description
of greater function. Unparenthesize make-random-state in a .code.
-rw-r--r-- | txr.1 | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -14022,7 +14022,7 @@ goes to the rightmost place, and that value is returned. Deletes a place which supports deletion, and returns the value which existed in that place prior to deletion. -.meIP (lset <> { place }+ << list-expr ) +.meIP (lset <> { place }+ << sequence ) Sets multiple places to values obtained from successive elements of .metn sequence . @@ -16205,7 +16205,7 @@ must not be the atom .codn t , there is no restriction against it being an atom which evaluates to -.code t. +.codn t . In this situation, the value .code t has no special meaning. @@ -20160,7 +20160,7 @@ with the arguments reversed. That is to say, the following equivalences hold: .verb - (greater a <--> (less a) <--> t + (greater a) <--> (less a) <--> t (greater a b) <--> (less b a) (greater a b c ...) <--> (less ... c b a) .brev @@ -26222,7 +26222,7 @@ argument must be a vector. .coNP Function @ fill-vec .synb -.mets (fill-vec-vec < vec < elem >> [ from <> [ to ]]) +.mets (fill-vec < vec < elem >> [ from <> [ to ]]) .syne .desc The @@ -62465,7 +62465,7 @@ If seed is not specified, then produces a seed based on some information in the process environment, such as current time of day. It is not guaranteed that two calls to -.code (make-random-state) +.code make-random-state that are separated by less than some minimum increment of real time produce different seeds. The minimum time increment depends on the platform. @@ -62593,7 +62593,7 @@ parameter, which defaults to the value of .coNP Function @ random-buf .synb -.mets (random-buf << size <> [ random-state ]) +.mets (random-buf < size <> [ random-state ]) .syne .desc The @@ -66863,7 +66863,7 @@ fields take on values of zero. .synb .mets (stat >> { path | < stream | << fd } <> [ struct ]) .mets (lstat << path ) -.mets (fstat >> { path | stream | << fd } <> [ struct ]) +.mets (fstat >> { path | < stream | << fd } <> [ struct ]) .syne .desc The |