summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-03-13 20:18:06 -0600
committerKarl Williamson <khw@cpan.org>2017-03-13 20:23:37 -0600
commitf149fd41b7179ae1e479dfc4672a6b7704404e0c (patch)
tree59868fb2e091854389dd4fe3295e0ffd7d12352f
parentb4986286562ec1c1e1c413aebf4773624cbd0009 (diff)
downloadperl-f149fd41b7179ae1e479dfc4672a6b7704404e0c.tar.gz
perlrun: -F pattern can't have NULs
-rw-r--r--pod/perlrun.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index b4bb5a3c6a..357b8b44e6 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -501,7 +501,7 @@ X<-F>
specifies the pattern to split on for B<-a>. The pattern may be
surrounded by C<//>, C<"">, or C<''>, otherwise it will be put in single
-quotes. You can't use literal whitespace in the pattern.
+quotes. You can't use literal whitespace or NUL characters in the pattern.
B<-F> implicitly sets both B<-a> and B<-n>.