]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/vectors/vectors-docs.factor
Fixing various test failures caused by C type parser change, and clarify C type docs...
[factor.git] / basis / math / vectors / vectors-docs.factor
index 32c354354f8e8837140de431175f7a92f15f0499..34b2c0bec61fcaa69f4f53108aa2ecec63977b2e 100644 (file)
@@ -171,14 +171,14 @@ HELP: vs+
 { $examples
     "With saturation:"
     { $example
-        "USING: math.vectors prettyprint specialized-arrays ;"
+        "USING: alien.c-types math.vectors prettyprint specialized-arrays ;"
         "SPECIALIZED-ARRAY: uchar"
         "uchar-array{ 100 200 150 } uchar-array{ 70 70 70 } vs+ ."
         "uchar-array{ 170 255 220 }"
     }
     "Without saturation:"
     { $example
-        "USING: math.vectors prettyprint specialized-arrays ;"
+        "USING: alien.c-types math.vectors prettyprint specialized-arrays ;"
         "SPECIALIZED-ARRAY: uchar"
         "uchar-array{ 100 200 150 } uchar-array{ 70 70 70 } v+ ."
         "uchar-array{ 170 14 220 }"