pod2html: try to be EOL agnostic.
[p5sagit/p5-mst-13.2.git] / lib / sort.pm
index 18f3606..27efbf5 100644 (file)
@@ -77,7 +77,7 @@ quicksort defends against quadratic behaviour by shuffling large
 arrays before sorting.
 
 A stable sort means that for records that compare equal, the original
-input ordering is preserved.  Perl's mergesort is stable, quicksort is not.
+input ordering is preserved.  Mergesort is stable, quicksort is not.
 Stability will matter only if elements that compare equal can be
 distinguished in some other way.  That means that simple numerical
 and lexical sorts do not profit from stability, since equal elements
@@ -100,5 +100,10 @@ caches that are much faster than main memory.  You can force the
 choice of algorithm with this pragma, but this feels heavy-handed,
 so the subpragmas beginning with a C<_> may not persist beyond Perl 5.8.
 
+=head1 CAVEATS
+
+This pragma is not lexically scoped : its effect is global to the program
+it appears in.  This may change in future versions.
+
 =cut