]> gitweb.factorcode.org Git - factor.git/commitdiff
core: fix word link.
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 8 Jun 2015 23:53:54 +0000 (16:53 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 8 Jun 2015 23:53:54 +0000 (16:53 -0700)
extra: fix word

core/parser/parser-docs.factor
extra/reports/noise/noise.factor

index 0d30bdd9b85dcb874dcc19b175ba38467a235190..b7366f154d0f4dfe8b525e829122943e4b90f3b6 100644 (file)
@@ -232,7 +232,7 @@ HELP: parse-definition
 $parsing-note ;
 
 HELP: bootstrap-syntax
-{ $var-description "Only set during bootstrap. Stores a copy of the " { $link vocab-words } " of the host's syntax vocabulary; this allows the host's parsing words to be used during bootstrap source parsing, not the target's." } ;
+{ $var-description "Only set during bootstrap. Stores a copy of the " { $link vocab-words-assoc } " of the host's syntax vocabulary; this allows the host's parsing words to be used during bootstrap source parsing, not the target's." } ;
 
 HELP: with-file-vocabs
 { $values { "quot" quotation } }
index 63abdfe308b12f25bd076e847febd4743588ddac..fb07701461a0f178c927224d16d21069fa3e20e7 100644 (file)
@@ -140,7 +140,7 @@ M: lambda-word word-noise-factor
     ] if-empty ;\r
 \r
 : noisy-vocabs ( -- alist )\r
-    vocabs [ dup vocab-noise-factor ] { } map>assoc\r
+    loaded-vocab-names [ dup vocab-noise-factor ] { } map>assoc\r
     sort-values reverse ;\r
 \r
 : noise-report ( -- )\r