stack-checker.state: Fix error in docs. Tweak doc grammar.

db4
Doug Coleman 2015-02-05 13:49:14 -08:00
parent 1b35e19a03
commit 5e48dfb1e6
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@ HELP: terminated?
HELP: current-effect
{ $values { "effect" effect } }
{ $description "Returns what the current analysis states stack effect is." }
{ $description "Returns the current analysis states stack effect." }
{ $examples
{ $example
"USING: namespaces prettyprint stack-checker.state ;"
"{ { input-count 2 } { terminated? t } { (meta-d) { 1 2 } } }"
"{ { input-count 2 } { terminated? t } { (meta-d) { 1 2 } } { literals V{ } } }"
"[ current-effect ] with-variables ."
"( x x -- x x * )"
}