Fix doc errors and typos across the board (#8139)

* Fix doc errors and typos across the board

* Fix a typo

* Fix the CI

* Fix more typos

* Fix CI

* More fixes

* Fix CI

* More fixes

* More fixes
This commit is contained in:
Santiago Castro
2020-10-29 10:33:33 -04:00
committed by GitHub
parent 4731a00c3e
commit 969859d5f6
160 changed files with 342 additions and 364 deletions

View File

@@ -100,7 +100,7 @@ def is_copy_consistent(filename, overwrite=False):
lines = f.readlines()
diffs = []
line_index = 0
# Not a foor loop cause `lines` is going to change (if `overwrite=True`).
# Not a for loop cause `lines` is going to change (if `overwrite=True`).
while line_index < len(lines):
search = _re_copy_warning.search(lines[line_index])
if search is None:
@@ -164,9 +164,9 @@ def check_copies(overwrite: bool = False):
if not overwrite and len(diffs) > 0:
diff = "\n".join(diffs)
raise Exception(
"Found the follwing copy inconsistencies:\n"
"Found the following copy inconsistencies:\n"
+ diff
+ "\nRun `make fix-copies` or `python utils/check_copies --fix_and_overwrite` to fix them."
+ "\nRun `make fix-copies` or `python utils/check_copies.py --fix_and_overwrite` to fix them."
)
check_model_list_copy(overwrite=overwrite)