From 236dd2cc9743591eae457e762d47f1910cf7ea91 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 9 Apr 2012 11:43:22 -0700 Subject: [PATCH] math.combinatorics: fix help-lint. --- basis/math/combinatorics/combinatorics-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/combinatorics/combinatorics-docs.factor b/basis/math/combinatorics/combinatorics-docs.factor index d085515713..0ae8c64428 100644 --- a/basis/math/combinatorics/combinatorics-docs.factor +++ b/basis/math/combinatorics/combinatorics-docs.factor @@ -104,7 +104,7 @@ HELP: >permutation { $examples { $example "USING: math.combinatorics.private prettyprint ;" "{ 0 0 0 0 } >permutation ." "{ 0 1 2 3 }" } } ; HELP: next-permutation -{ $values { "seq" sequence } { "seq" sequence } } +{ $values { "seq" sequence } } { $description "Rearranges the elements in " { $snippet "seq" } " into the lexicographically next greater permutation of elements." } { $notes "Performs an in-place modification of " { $snippet "seq" } "." } { $examples { $example "USING: math.combinatorics prettyprint ;" "\"ABC\" next-permutation ." "\"ACB\"" } } ;