From 4f631c4f8b1612a3c9ac34f3e44db802e6a3fcac Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 10 Feb 2014 20:40:01 -0800 Subject: [PATCH] generalizations: fix docs for nrot and -nrot. --- basis/generalizations/generalizations-docs.factor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/basis/generalizations/generalizations-docs.factor b/basis/generalizations/generalizations-docs.factor index ea579aa83a..7a219522eb 100644 --- a/basis/generalizations/generalizations-docs.factor +++ b/basis/generalizations/generalizations-docs.factor @@ -97,8 +97,8 @@ HELP: nrot { $example "USING: arrays generalizations kernel prettyprint ;" "1 2 3 4 4 nrot 4array ." "{ 2 3 4 1 }" } "Some core words expressed in terms of " { $link nrot } ":" { $table - { { $link swap } { $snippet "1 nrot" } } - { { $link rot } { $snippet "2 nrot" } } + { { $link swap } { $snippet "2 nrot" } } + { { $link rot } { $snippet "3 nrot" } } } } ; @@ -111,8 +111,8 @@ HELP: -nrot { $example "USING: arrays generalizations kernel prettyprint ;" "1 2 3 4 4 -nrot 4array ." "{ 4 1 2 3 }" } "Some core words expressed in terms of " { $link -nrot } ":" { $table - { { $link swap } { $snippet "1 -nrot" } } - { { $link -rot } { $snippet "2 -nrot" } } + { { $link swap } { $snippet "2 -nrot" } } + { { $link -rot } { $snippet "3 -nrot" } } } } ;