]> gitweb.factorcode.org Git - factor.git/commitdiff
Remove obsolete info; 1+ and 1- are identical to 1 + and 1 - in reality
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 5 Dec 2008 08:11:50 +0000 (02:11 -0600)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 5 Dec 2008 08:11:50 +0000 (02:11 -0600)
core/math/math-docs.factor

index aca43add5c4e163013f6313050d9d20262434d6b..3c2b7f67e2eecc618bdf01b3b77e5bc740f83fed 100644 (file)
@@ -166,15 +166,17 @@ HELP: log2
 HELP: 1+
 { $values { "x" number } { "y" number } }
 { $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 +" }
+    "There is no difference in behavior or efficiency."
 } ;
 
 HELP: 1-
 { $values { "x" number } { "y" number } }
 { $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 -" }
+    "There is no difference in behavior or efficiency."
 } ;
 
 HELP: ?1+