Merge pull request #3342 from mtmail/tyops

Correct some typos
This commit is contained in:
Sarah Hoffmann
2024-02-28 14:25:16 +01:00
committed by GitHub
45 changed files with 80 additions and 80 deletions

View File

@@ -127,7 +127,7 @@ def _get_indexes(conn: Connection) -> List[str]:
# CHECK FUNCTIONS
#
# Functions are exectured in the order they appear here.
# Functions are executed in the order they appear here.
@_check(hint="""\
{error}

View File

@@ -78,7 +78,7 @@ def from_file_find_line_portion(
filename: str, start: str, sep: str, fieldnum: int = 1
) -> Optional[str]:
"""open filename, finds the line starting with the 'start' string.
Splits the line using seperator and returns a "fieldnum" from the split."""
Splits the line using separator and returns a "fieldnum" from the split."""
with open(filename, encoding='utf8') as file:
result = ""
for line in file: