Remove obsolete info; 1+ and 1- are identical to 1 + and 1 - in reality

db4
Slava Pestov 2008-12-05 02:11:50 -06:00
parent 25bf16f6d4
commit fa146b248a
1 changed files with 4 additions and 2 deletions

View File

@ -166,15 +166,17 @@ HELP: log2
HELP: 1+ HELP: 1+
{ $values { "x" number } { "y" number } } { $values { "x" number } { "y" number } }
{ $description { $description
"Increments a number by 1. The following two lines are equivalent, but the first is more efficient:" "Increments a number by 1. The following two lines are equivalent:"
{ $code "1+" "1 +" } { $code "1+" "1 +" }
"There is no difference in behavior or efficiency."
} ; } ;
HELP: 1- HELP: 1-
{ $values { "x" number } { "y" number } } { $values { "x" number } { "y" number } }
{ $description { $description
"Decrements a number by 1. The following two lines are equivalent, but the first is more efficient:" "Decrements a number by 1. The following two lines are equivalent:"
{ $code "1-" "1 -" } { $code "1-" "1 -" }
"There is no difference in behavior or efficiency."
} ; } ;
HELP: ?1+ HELP: ?1+