summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorEd Sabol <esabol@users.noreply.github.com>2022-06-19 00:03:50 -0400
committerxenu <me@xenu.pl>2022-06-19 09:16:43 +0200
commitfeb4200c8b05dbe7f18760971b8a3feebf02eedb (patch)
tree9c02a7cdc63c83bb607358c9c02eaeb8cf642a65 /perl.c
parentf6f28a81d64fd1d1e8b067049b4f456c369688b2 (diff)
downloadperl-feb4200c8b05dbe7f18760971b8a3feebf02eedb.tar.gz
Remove a stray period from the usage output
A recent contribution (PR #19853) added a description for the `-g` option to Perl's usage output. Unfortunately, it included a stray period in the description that wasn't caught before merging. (Note that none of the other descriptions have any periods.) This very trivial pull request removes that stray period.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index e9bc09dced..22434c1538 100644
--- a/perl.c
+++ b/perl.c
@@ -3324,7 +3324,7 @@ S_usage(pTHX) /* XXX move this out into a module ? */
" -E commandline like -e, but enables all optional features\n"
" -f don't do $sitelib/sitecustomize.pl at startup\n"
" -F/pattern/ split() pattern for -a switch (//'s are optional)\n"
-" -g read all input in one go (slurp), rather than line-by-line. (alias for -0777)\n"
+" -g read all input in one go (slurp), rather than line-by-line (alias for -0777)\n"
" -i[extension] edit <> files in place (makes backup if extension supplied)\n"
" -Idirectory specify @INC/#include directory (several -I's allowed)\n",
" -l[octnum] enable line ending processing, specifies line terminator\n"