This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Typo fix in perlfunc [RT#118093]
authorEric Brine <ikegami@adaelis.com>
Wed, 22 May 2013 03:15:58 +0000 (20:15 -0700)
committerTony Cook <tony@develop-help.com>
Tue, 4 Jun 2013 09:04:57 +0000 (19:04 +1000)
This addresses an earlier fix which incorrectly changed "syntax fancy" to "fancy fancy" instead of "fancy syntax".

pod/perlfunc.pod

index 3b36873..9ad4793 100644 (file)
@@ -482,7 +482,7 @@ Example:
 
 As of Perl 5.10.0, as a form of purely syntactic sugar, you can stack file
 test operators, in a way that C<-f -w -x $file> is equivalent to
-C<-x $file && -w _ && -f _>.  (This is only fancy fancy: if you use
+C<-x $file && -w _ && -f _>.  (This is only fancy syntax: if you use
 the return value of C<-f $file> as an argument to another filetest
 operator, no special magic will happen.)