summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
commitf51d715845dfede2803ef7a2e6ea4e2a03f18486 (patch)
tree976bc3c3a7633d32b6bccb715cda9da34857e6c4 /Doc
parenta84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (diff)
downloadcpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.zip
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.gz
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.bz2
Issue #25523: Further a-to-an corrections new in 3.5.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/glob.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst
index 50f38a4..d16b001 100644
--- a/Doc/library/glob.rst
+++ b/Doc/library/glob.rst
@@ -38,7 +38,7 @@ For example, ``'[?]'`` matches the character ``'?'``.
symlinks are included in the results (as in the shell).
If *recursive* is true, the pattern "``**``" will match any files and zero or
- more directories and subdirectories. If the pattern is followed by a
+ more directories and subdirectories. If the pattern is followed by an
``os.sep``, only directories and subdirectories match.
.. note::