Spell check comments and docstrings

This commit is contained in:
Veronica Berglyd Olsen
2023-07-20 23:25:49 +02:00
parent e773884c29
commit 4dfa51855e
45 changed files with 122 additions and 175 deletions
+2 -2
View File
@@ -110,7 +110,7 @@ class NWStorage:
"""
inPath = Path(path).resolve()
if inPath.is_file():
# The path should not point to an exisitng file,
# The path should not point to an existing file,
# but it can point to a folder containing files
inPath = inPath.parent
@@ -313,7 +313,7 @@ class NWStorage:
if not checkLegacy:
# The legacy content check is only needed for project folder
# storage, so if it is not expected to be that, there's no
# need for the remaning checks.
# need for the remaining checks.
return True
legacy = _LegacyStorage(self._project)