From 21a1a6e7a158367d1186e91fdb72c17504024250 Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Sat, 1 Aug 2020 21:48:40 +0200 Subject: [PATCH] syntax-docs: fix a typo --- core/syntax/syntax-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/syntax/syntax-docs.factor b/core/syntax/syntax-docs.factor index bac08f6e32..cd9220b5c1 100644 --- a/core/syntax/syntax-docs.factor +++ b/core/syntax/syntax-docs.factor @@ -535,7 +535,7 @@ HELP: USING: HELP: QUALIFIED: { $syntax "QUALIFIED: vocab" } { $description "Adds the vocabulary's words, prefixed with the vocabulary name, to the search path." } -{ $notes "If adding the vocabulary introduces ambiguity, the vocabulary will take precedence when resolving any ambiguous names. This is a rare case; for example, suppose a vocabulary " { $snippet "fish" } " defines a word named " { $snippet "go:fishing" } ", and a vocabulary named " { $snippet "go" } " defines a word named " { $snippet "fishing" } ". Then, the following will call the latter word:" +{ $notes "If adding a vocabulary introduces ambiguity, the vocabulary will take precedence when resolving any ambiguous names. This is a rare case; for example, suppose a vocabulary " { $snippet "fish" } " defines a word named " { $snippet "go:fishing" } ", and a vocabulary named " { $snippet "go" } " defines a word named " { $snippet "fishing" } ". Then, the following will call the latter word:" { $code "USE: fish" "QUALIFIED: go"