math.combinatorics: fix help-lint.

db4
John Benediktsson 2012-04-09 11:43:22 -07:00
parent 5794ab46a0
commit 236dd2cc97
1 changed files with 1 additions and 1 deletions

View File

@ -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\"" } } ;