From fa146b248a01f33d0d1191d4e872cdae3feff13f Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 5 Dec 2008 02:11:50 -0600 Subject: [PATCH] Remove obsolete info; 1+ and 1- are identical to 1 + and 1 - in reality --- core/math/math-docs.factor | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/math/math-docs.factor b/core/math/math-docs.factor index aca43add5c..3c2b7f67e2 100644 --- a/core/math/math-docs.factor +++ b/core/math/math-docs.factor @@ -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+