diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-06-21 23:32:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-06-22 00:58:11 +0200 |
commit | d64fc8b039fd686a5f8f33458ba1193dc584b2a9 (patch) | |
tree | 3df652f6c926006551371f9f9cbf01f4d1a8ae89 /doc/ref/api-data.texi | |
parent | 5c27902e5e01a94b22ebc51288500a3d36253293 (diff) | |
download | guile-d64fc8b039fd686a5f8f33458ba1193dc584b2a9.tar.gz |
Fix documentation of `make-bytevector'.
* doc/ref/api-data.texi (Bytevector Manipulation): Fix documentation of
the FILL argument of `make-bytevector'.
Diffstat (limited to 'doc/ref/api-data.texi')
-rwxr-xr-x | doc/ref/api-data.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 8dbad385b..78d4ea27b 100755 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -3839,8 +3839,8 @@ procedures. @deffnx {C Function} scm_make_bytevector (len, fill) @deffnx {C Function} scm_c_make_bytevector (unsigned len) Return a new bytevector of @var{len} bytes. Optionally, if @var{fill} -is given, fill it with @var{fill}; @var{fill} must be an 8-bit signed -integer, i.e., in the range [-128,127]. +is given, fill it with @var{fill}; @var{fill} must be in the range +[-128,255]. @end deffn @deffn {Scheme Procedure} bytevector? obj |