Integrate change #8818 from maintperl, a FAQ nit.
Jarkko Hietaniemi [Sun, 18 Feb 2001 02:25:55 +0000 (02:25 +0000)]
p4raw-link: @8818 on //depot/maint-5.6/perl: 26f0d336d3c5218555245ccab94cfd5b1ccf5312

p4raw-id: //depot/perl@8819
p4raw-integrated: from //depot/maint-5.6/perl@8816 'copy in'
pod/perlfaq4.pod (@8627..)

pod/perlfaq4.pod

index 1198f18..8c570c2 100644 (file)
@@ -953,7 +953,7 @@ ordered and whether you wish to preserve the ordering.
 If @in is sorted, and you want @out to be sorted:
 (this assumes all true values in the array)
 
-    $prev = 'nonesuch';
+    $prev = "not equal to $in[0]";
     @out = grep($_ ne $prev && ($prev = $_, 1), @in);
 
 This is nice in that it doesn't use much extra memory, simulating