]> gitweb.factorcode.org Git - factor.git/blobdiff - core/syntax/syntax-docs.factor
Fixing various test failures and updating some more vocabs for >r/r> removal
[factor.git] / core / syntax / syntax-docs.factor
index 54b8b1b40152c9ab7edc3b915b018e4ea9a3cf50..36f427d5ad021e980977c1cb745d713140157604 100644 (file)
@@ -414,7 +414,7 @@ HELP: QUALIFIED:
 { $syntax "QUALIFIED: vocab" }
 { $description "Similar to " { $link POSTPONE: USE: } " but loads vocabulary with prefix." }
 { $examples { $example
-    "USING: prettyprint qualified ;"
+    "USING: prettyprint ;"
     "QUALIFIED: math"
     "1 2 math:+ ." "3"
 } } ;
@@ -423,7 +423,7 @@ HELP: QUALIFIED-WITH:
 { $syntax "QUALIFIED-WITH: vocab word-prefix" }
 { $description "Works like " { $link POSTPONE: QUALIFIED: } " but uses " { $snippet "word-prefix" } " as prefix." }
 { $examples { $code
-    "USING: prettyprint qualified ;"
+    "USING: prettyprint ;"
     "QUALIFIED-WITH: math m"
     "1 2 m:+ ."
     "3"
@@ -445,7 +445,7 @@ HELP: RENAME:
 { $syntax "RENAME: word vocab => newname" }
 { $description "Imports " { $snippet "word" } " from " { $snippet "vocab" } ", but renamed to " { $snippet "newname" } "." }
 { $examples { $example
-    "USING: prettyprint qualified ;"
+    "USING: prettyprint ;"
     "RENAME: + math => -"
     "2 3 - ."
     "5"