diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-08-16 17:05:41 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-08-16 17:06:29 +0100 |
commit | b474a1b1541a96b9e69c616cadb99e23ab79378d (patch) | |
tree | d1fbd9551b0c982371197cc9d95f7b30db32ace1 /pod | |
parent | 686add28b94eeabc4fbd761332242838957fafeb (diff) | |
download | perl-b474a1b1541a96b9e69c616cadb99e23ab79378d.tar.gz |
Corrected typo in documentation for glob().
Diffstat (limited to '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 affd834fe0..9d504b0d92 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -2393,7 +2393,7 @@ more detail in L<perlop/"I/O Operators">. Note that C<glob> splits its arguments on whitespace and treats each segment as separate pattern. As such, C<glob("*.c *.h")> matches all files with a F<.c> or F<.h> extension. The expression -C<glob(".* *")> matchs all files in the current working directory. +C<glob(".* *")> matches all files in the current working directory. If non-empty braces are the only wildcard characters used in the C<glob>, no filenames are matched, but potentially many strings |