From 60baa972f5947fe4c01624c122d8f5e121f9b25a Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 24 May 2009 11:11:47 +0000 Subject: [PATCH] fix docs to match revised vector-, string-, and byte-string-alloc C functions (merge to 4.2) svn: r14968 --- collects/scribblings/inside/values.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/inside/values.scrbl b/collects/scribblings/inside/values.scrbl index 53f9ea7173..e23b5df914 100644 --- a/collects/scribblings/inside/values.scrbl +++ b/collects/scribblings/inside/values.scrbl @@ -472,7 +472,7 @@ Like @cpp{scheme_make_sized_byte_string}, except the @var{len} non-zero, then @var{copy} must be non-zero.} @function[(Scheme_Object* scheme_alloc_byte_string - [int size] + [long size] [char fill])]{ Allocates a new Scheme byte string.} @@ -555,7 +555,7 @@ Like @cpp{scheme_make_sized_char_string}, except the @var{len} non-zero, then @var{copy} must be non-zero.} @function[(Scheme_Object* scheme_alloc_char_string - [int size] + [long size] [mzchar fill])]{ Allocates a new Scheme string.} @@ -636,7 +636,7 @@ Like @cpp{scheme_intern_exact_keyword}, but given a character array instead of a UTF-8-encoding byte array.} @function[(Scheme_Object* scheme_make_vector - [int size] + [long size] [Scheme_Object* fill])]{ Allocates a new vector.}