summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod8
-rw-r--r--pod/perlgit.pod3
-rw-r--r--pod/perlrun.pod12
3 files changed, 13 insertions, 10 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 13ffbeef1e..3d58c7b9b0 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -2707,10 +2707,10 @@ The number of items in a hash can be obtained by doing:
=item Lexing code attempted to stuff non-Latin-1 character into Latin-1 input
-(F) An extension is attempting to insert text into the current parse
-(using L<lex_stuff_pvn|perlapi/lex_stuff_pvn> or similar), but tried to insert a character that
-couldn't be part of the current input. This is an inherent pitfall
-of the stuffing mechanism, and one of the reasons to avoid it. Where
+(F) An extension is attempting to insert text into the current parse (using
+L<lex_stuff_pvn|perlapi/lex_stuff_pvn> or similar), but tried to insert a
+character that couldn't be part of the current input. This is an inherent
+pitfall of the stuffing mechanism, and one of the reasons to avoid it. Where
it is necessary to stuff, stuffing only plain ASCII is recommended.
=item Lexing code internal error (%s)
diff --git a/pod/perlgit.pod b/pod/perlgit.pod
index 65dde7c104..100a54722e 100644
--- a/pod/perlgit.pod
+++ b/pod/perlgit.pod
@@ -889,7 +889,8 @@ Finally, you should then delete the remote smoke-me branch:
(which is likely to produce a warning like this, which can be ignored:
- remote: fatal: ambiguous argument 'refs/heads/smoke-me/tonyc/win32stat': unknown revision or path not in the working tree.
+ remote: fatal: ambiguous argument 'refs/heads/smoke-me/tonyc/win32stat':
+ unknown revision or path not in the working tree.
remote: Use '--' to separate paths from revisions
) and then delete your local branch:
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index ae2efe1b6c..05dea4ea17 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -592,8 +592,9 @@ If, for a given file, Perl is unable to create the backup file as
specified in the extension then it will skip that file and continue on
with the next one (if it exists).
-For a discussion of issues surrounding file permissions and B<-i>,
-see L<perlfaq5/Why does Perl let me delete read-only files? Why does -i clobber protected files? Isn't this a bug in Perl?>.
+For a discussion of issues surrounding file permissions and B<-i>, see
+L<perlfaq5/Why does Perl let me delete read-only files? Why does -i clobber
+protected files? Isn't this a bug in Perl?>.
You cannot use B<-i> to create directories or to strip extensions from
files.
@@ -738,9 +739,10 @@ if it is invoked with B<-xyz=abc>.
#!/usr/bin/perl -s
if ($xyz) { print "$xyz\n" }
-Do note that a switch like B<--help> creates the variable C<${-help}>, which is not compliant
-with C<use strict "refs">. Also, when using this option on a script with
-warnings enabled you may get a lot of spurious "used only once" warnings.
+Do note that a switch like B<--help> creates the variable C<${-help}>, which is
+not compliant with C<use strict "refs">. Also, when using this option on a
+script with warnings enabled you may get a lot of spurious "used only once"
+warnings.
=item B<-S>
X<-S>