diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-05 00:27:32 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-06 10:22:24 -0700 |
commit | ecae6a5212a080cffbafa3870873f24797a4238a (patch) | |
tree | 00ff3d689923b6836990f8271152dd72161002a9 | |
parent | 81c412f38c1fb5c025640edc3eebb1541c223da4 (diff) | |
download | txr-ecae6a5212a080cffbafa3870873f24797a4238a.tar.gz txr-ecae6a5212a080cffbafa3870873f24797a4238a.tar.bz2 txr-ecae6a5212a080cffbafa3870873f24797a4238a.zip |
doc: fix description of carray-uint type argument.
The optional type argument of carray-uint and carray-int was
documented as defaulting to uint, but it actually defaults to
uchar.
* txr.1: uint -> uchar.
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80766,7 +80766,7 @@ The argument, a compiled FFI type, determines the element type for the returned .codn carray . If it is omitted, it defaults to the -.code uint +.code uchar type, so that the array is effectively of bytes. Regardless of |