Merge pull request #3581 from cclauss:codespell

PiperOrigin-RevId: 400792845
This commit is contained in:
dinord
2021-10-05 10:59:42 -04:00
7 changed files with 9 additions and 9 deletions

View File

@@ -224,7 +224,7 @@ class Subprocess:
combined in a string.
"""
# The subprocess module is the preferrable way of running programs
# The subprocess module is the preferable way of running programs
# since it is available and behaves consistently on all platforms,
# including Windows. But it is only available starting in python 2.4.
# In earlier python versions, we revert to the popen2 module, which is