math.combinatorics: fix docs for next-permutation.

db4
John Benediktsson 2012-03-02 09:55:22 -08:00
parent 8d56193edd
commit 7bb807d441
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ HELP: >permutation
HELP: next-permutation
{ $values { "seq" sequence } { "seq" sequence } }
{ $description "Rearranges the elements in " { $snippet "seq" } " into the lexicographically next greater permutation of elements" }
{ $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\"" } } ;