diff --git a/core/byte-vectors/byte-vectors-docs.factor b/core/byte-vectors/byte-vectors-docs.factor index 7617b90699..7ea0138760 100755 --- a/core/byte-vectors/byte-vectors-docs.factor +++ b/core/byte-vectors/byte-vectors-docs.factor @@ -24,7 +24,7 @@ HELP: { $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." } ; diff --git a/core/float-vectors/float-vectors-docs.factor b/core/float-vectors/float-vectors-docs.factor index 5be891945a..f0901fd46f 100755 --- a/core/float-vectors/float-vectors-docs.factor +++ b/core/float-vectors/float-vectors-docs.factor @@ -24,7 +24,7 @@ HELP: { $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." } ;