diff options
author | Karl Williamson <khw@cpan.org> | 2015-09-29 11:55:02 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-29 11:59:38 -0600 |
commit | 94757bf7ac8451b3588578f287f9c511a04011bf (patch) | |
tree | 0c897346f32f556a94e1896857c2261387585864 /pod/perlfunc.pod | |
parent | 1dbe01a3c62c45320f11411ff662bbc53cf4de9e (diff) | |
download | perl-94757bf7ac8451b3588578f287f9c511a04011bf.tar.gz |
perlfunc: Nit
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 1759ad15dd..18cabfe79a 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2893,7 +2893,7 @@ C<glob(".* *")> matches all files in the current working directory. If you want to glob filenames that might contain whitespace, you'll have to use extra quotes around the spacey filename to protect it. For example, to glob filenames that have an C<e> followed by a space -followed by an C<f>, use either of: +followed by an C<f>, use one of: @spacies = <"*e f*">; @spacies = glob '"*e f*"'; |