env: minor comment clarification

This commit is contained in:
Georg Brandl 2014-09-22 10:49:14 +02:00
parent 9ae7c784b5
commit 062492d75f

View File

@ -213,8 +213,8 @@ class BuildEnvironment:
# the source suffix.
self.found_docs = set() # contains all existing docnames
self.all_docs = {} # docname -> mtime at the time of build
# contains all built docnames
self.all_docs = {} # docname -> mtime at the time of reading
# contains all read docnames
self.dependencies = {} # docname -> set of dependent file
# names, relative to documentation root
self.reread_always = set() # docnames to re-read unconditionally on
@ -665,7 +665,7 @@ class BuildEnvironment:
if app:
app.emit('doctree-read', doctree)
# store time of build, for outdated files detection
# store time of reading, for outdated files detection
# (Some filesystems have coarse timestamp resolution;
# therefore time.time() can be older than filesystem's timestamp.
# For example, FAT32 has 2sec timestamp resolution.)