[DOC PATCH] Sort subs *can* now be recursive
Robin Houston [Tue, 22 Nov 2005 13:28:17 +0000 (13:28 +0000)]
Message-ID: <20051122132817.GA20895@rpc142.cs.man.ac.uk>

p4raw-id: //depot/perl@26194

pod/perlfunc.pod

index 2ec4e82..1efdefd 100644 (file)
@@ -5100,8 +5100,8 @@ as the package global variables $a and $b (see example below).  Note that
 in the latter case, it is usually counter-productive to declare $a and
 $b as lexicals.
 
-In either case, the subroutine may not be recursive.  The values to be
-compared are always passed by reference and should not be modified.
+The values to be compared are always passed by reference and should not
+be modified.
 
 You also cannot exit out of the sort block or subroutine using any of the
 loop control operators described in L<perlsyn> or with C<goto>.