summaryrefslogtreecommitdiff
path: root/ext/File-Glob
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2017-05-08 15:01:08 +0200
committerSawyer X <xsawyerx@cpan.org>2017-06-01 10:53:31 +0200
commitdb2469b300177a4f81d7cf6078ac0ac85f2e1a8b (patch)
tree35104bdb24519b8b9f6a72a2f8055b651b18716f /ext/File-Glob
parent0db967b2e6a4093a6a5f649190159767e5d005e0 (diff)
downloadperl-db2469b300177a4f81d7cf6078ac0ac85f2e1a8b.tar.gz
fixup typo (squash candidate) in globbing code comments
This fixes up a typo from 444c4cd5e784ec836ff4a81a582bcb0df9f1e277, if possible before merging to blead squash this commit with that.
Diffstat (limited to 'ext/File-Glob')
-rw-r--r--ext/File-Glob/bsd_glob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/File-Glob/bsd_glob.c b/ext/File-Glob/bsd_glob.c
index e96fb7356a..86faa8e1aa 100644
--- a/ext/File-Glob/bsd_glob.c
+++ b/ext/File-Glob/bsd_glob.c
@@ -916,7 +916,7 @@ globextend(const Char *path, glob_t *pglob, size_t *limitp)
* pattern matching function for filenames using state machine to avoid
* recursion. We maintain a "nextp" and "nextn" to allow us to backtrack
* without additional callframes, and to do cleanly prune the backtracking
- * state when multiple '*' (start) matches are included in the patter.
+ * state when multiple '*' (start) matches are included in the pattern.
*
* Thanks to Russ Cox for the improved state machine logic to avoid quadratic
* matching on failure.