Skip to content

test_cases README: fix typos #8453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test_cases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Many test cases also make use of
a function which allows us to test whether a type checker's inferred type of an
expression is what we'd like it be.

Finally, some stubs make use of `# type: ignore` comments (in combination with
Finally, some tests make use of `# type: ignore` comments (in combination with
mypy's
[`--warn-unused-ignores`](https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-warn-unused-ignores)
setting and pyright's
Expand Down Expand Up @@ -71,4 +71,4 @@ extensions, and since the tests need to pass on all Python versions >=3.7, PEP

PEP 585 syntax can also not be used in the `test_cases` directory. Use
`typing.Tuple` instead of `tuple`, `typing.Callable` instead of
`collections.abc.Callable`, and `re.Match` instead of `typing.Match` (etc.).
`collections.abc.Callable`, and `typing.Match` instead of `re.Match` (etc.).