From c0e34a71662a7be213a1dbc918a13833f0c5e8ce Mon Sep 17 00:00:00 2001 From: John Clements Date: Sat, 25 Sep 2010 09:55:34 -0700 Subject: [PATCH] minor doc update to ffi/cvector --- collects/scribblings/foreign/cvector.scrbl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/collects/scribblings/foreign/cvector.scrbl b/collects/scribblings/foreign/cvector.scrbl index 750989d2ee..6c4f2a6a41 100644 --- a/collects/scribblings/foreign/cvector.scrbl +++ b/collects/scribblings/foreign/cvector.scrbl @@ -25,7 +25,8 @@ needed.} @defproc[(make-cvector [type ctype?] [length exact-nonnegative-integer?]) cvector?]{ Allocates a C vector using the given @scheme[type] and -@scheme[length].} +@scheme[length]. The resulting vector is not guaranteed to +contain any particular values.} @defproc[(cvector [type ctype?] [val any/c] ...) cvector?]{