This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f446f8
)
Correct typo: the warning has 'statement' in singular
author
James E Keenan
<jkeenan@cpan.org>
Mon, 9 Dec 2019 00:27:39 +0000
(19:27 -0500)
committer
James E Keenan
<jkeenan@cpan.org>
Mon, 9 Dec 2019 00:27:39 +0000
(19:27 -0500)
pod/perlhacktips.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlhacktips.pod
b/pod/perlhacktips.pod
index
6f167dd
..
da15547
100644
(file)
--- a/
pod/perlhacktips.pod
+++ b/
pod/perlhacktips.pod
@@
-432,7
+432,7
@@
Mixing declarations and code
That is C99 or C++. Some C compilers allow that, but you shouldn't.
-The gcc option C<-Wdeclaration-after-statement
s
> scans for such
+The gcc option C<-Wdeclaration-after-statement> scans for such
problems (by default on starting from Perl 5.9.4).
=item *