Doc fixes

db4
Slava Pestov 2008-01-30 01:22:29 -06:00
parent f73f2b8697
commit 14324ae396
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ HELP: <byte-vector>
{ $description "Creates a new byte vector that can hold " { $snippet "n" } " bytes before resizing." } ;
HELP: >byte-vector
{ $values { "seq" "a sequence" } { "vector" vector } }
{ $values { "seq" "a sequence" } { "byte-vector" vector } }
{ $description "Outputs a freshly-allocated byte vector with the same elements as a given sequence." }
{ $errors "Throws an error if the sequence contains elements other than integers." } ;

View File

@ -24,7 +24,7 @@ HELP: <float-vector>
{ $description "Creates a new float vector that can hold " { $snippet "n" } " floats before resizing." } ;
HELP: >float-vector
{ $values { "seq" "a sequence" } { "vector" vector } }
{ $values { "seq" "a sequence" } { "float-vector" float-vector } }
{ $description "Outputs a freshly-allocated float vector with the same elements as a given sequence." }
{ $errors "Throws an error if the sequence contains elements other than real numbers." } ;