Skip to content

Commit ce3ab9e

Browse files
committed
fix grammar
1 parent efdcf4b commit ce3ab9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/reference/import.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,15 +687,15 @@ writing it. At runtime, the import system then validates the cache file by
687687
checking the stored metadata in the cache file against at source's
688688
metadata.
689689

690-
Python also supports "hash-based" cache files, which store a hash of a source
691-
file contents rather than its metadata. There are two variants of hash-based
690+
Python also supports "hash-based" cache files, which store a hash of the source
691+
file's contents rather than its metadata. There are two variants of hash-based
692692
``.pyc`` files: checked and unchecked. For checked hash-based ``.pyc`` files,
693693
Python validates the cache file by hashing the source file and comparing the
694694
resulting hash with the hash in the cache file. If a checked hash-based cache
695695
file is found to be invalid, Python regenerates it and writes a new checked
696696
hash-based cache file. For unchecked hash-based ``.pyc`` files, Python simply
697697
assumes the cache file is valid if it exists. Hash-based ``.pyc`` files
698-
validation behavior may be override with the :option:`--check-hash-based-pycs`
698+
validation behavior may be overridden with the :option:`--check-hash-based-pycs`
699699
flag.
700700

701701
.. versionchanged:: 3.7

0 commit comments

Comments
 (0)