From 5bccc964986cb06c4fe46fe677fd354de5738bab Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Thu, 11 Mar 2010 11:22:28 -0800 Subject: [PATCH] typo in docs --- core/effects/effects-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/effects/effects-docs.factor b/core/effects/effects-docs.factor index e97120d26b..0d4da504fb 100644 --- a/core/effects/effects-docs.factor +++ b/core/effects/effects-docs.factor @@ -44,7 +44,7 @@ HELP: { "out" "a sequence of strings or string–type pairs" } { "effect" effect } } -{ $description "Constructs an " { $link effect } " object. Each element of " { $snippet "in" } " and " { $snippet "out" } " must be either a string (which is equivalent to a " { $snippet "name" } " in literal stack effect syntax), or a " { $link pair } " where the first element is a string and the second is either a " { $link class } " or effect (which is equivalent to " { $snippet "name: class" } " or " { $snippet "name: ( nested -- effect )" } " in the literal syntax. If the " { $snippet "out" } " array consists of a single string element " { $snippet "\"*\"" } ", a terminating stack effect will be constructed." } +{ $description "Constructs an " { $link effect } " object. Each element of " { $snippet "in" } " and " { $snippet "out" } " must be either a string, which is equivalent to a " { $snippet "name" } " in literal stack effect syntax), or a " { $link pair } " where the first element is a string and the second is either a " { $link class } " or effect, which is equivalent to " { $snippet "name: class" } " or " { $snippet "name: ( nested -- effect )" } " in the literal syntax. If the " { $snippet "out" } " array consists of a single string element " { $snippet "\"*\"" } ", a terminating stack effect will be constructed." } { $notes "This word cannot construct effects with " { $link "effects-variables" } ". Use " { $link } " to construct variable stack effects." } { $examples { $example """USING: effects prettyprint ;