summaryrefslogtreecommitdiff
path: root/Doc/library/linecache.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-14 01:14:54 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-14 01:14:54 +0000
commit97ce0faa4daee4d1a8191cf248861f878b0b789e (patch)
treecd3221b7f9afe409ae54f6e4dfab1d6e5cc71a90 /Doc/library/linecache.rst
parent32acc16cdab1e890db17c79a5d32c2379800722d (diff)
downloadcpython-git-97ce0faa4daee4d1a8191cf248861f878b0b789e.tar.gz
Fix grammar in whatsnew/3.5.rst and elsewhere
Mainly missing grammatical articles (the, a).
Diffstat (limited to 'Doc/library/linecache.rst')
-rw-r--r--Doc/library/linecache.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/linecache.rst b/Doc/library/linecache.rst
index 6c92cc58d2..3f14885b06 100644
--- a/Doc/library/linecache.rst
+++ b/Doc/library/linecache.rst
@@ -49,7 +49,7 @@ The :mod:`linecache` module defines the following functions:
.. function:: lazycache(filename, module_globals)
- Capture enough detail about a non-file based module to permit getting its
+ Capture enough detail about a non-file-based module to permit getting its
lines later via :func:`getline` even if *module_globals* is None in the later
call. This avoids doing I/O until a line is actually needed, without having
to carry the module globals around indefinitely.