]> gitweb.factorcode.org Git - factor.git/blobdiff - core/kernel/kernel-docs.factor
sequences: fix docs
[factor.git] / core / kernel / kernel-docs.factor
index aba338a960025c68f52318e008c5e0a681fbbb95..7fe2e3d81b007cf409b00dcdf5cf875890a6a893 100644 (file)
@@ -717,7 +717,7 @@ HELP: unless*
 { $code "X [ Y ] unless*" "X dup [ ] [ drop Y ] if" } } ;
 
 HELP: ?if-old
-{ $values { "default" object } { "cond" "a generalized boolean" } { "true" { $quotation ( ..a cond -- ..b ) } } { "false" { $quotation ( ..a default -- ..b ) } } }
+{ $values { "obj" object } { "cond" "a generalized boolean" } { "true" { $quotation ( ..a cond -- ..b ) } } { "false" { $quotation ( ..a default -- ..b ) } } }
 { $description "If the condition is " { $link f } ", the " { $snippet "false" } " quotation is called with the " { $snippet "default" } " value on the stack. Otherwise, the " { $snippet "true" } " quotation is called with the condition on the stack." }
 { $notes
 "The following two lines are equivalent:"