Fix typos found by codespell (#14863)

## Summary

Just fix typos.

## Test Plan

CI tests.

---------

Co-authored-by: Micha Reiser <micha@reiser.io>
This commit is contained in:
Dimitri Papadopoulos Orfanos
2024-12-09 10:32:12 +01:00
committed by GitHub
parent 3d9ac535e9
commit 59145098d6
34 changed files with 58 additions and 58 deletions

View File

@@ -50,7 +50,7 @@ reveal_type(b) # revealed: tuple[int]
reveal_type(c) # revealed: tuple[str, int]
reveal_type(d) # revealed: tuple[tuple[str, str], tuple[int, int]]
# TODO: homogenous tuples, PEP-646 tuples
# TODO: homogeneous tuples, PEP-646 tuples
reveal_type(e) # revealed: @Todo(full tuple[...] support)
reveal_type(f) # revealed: @Todo(full tuple[...] support)
reveal_type(g) # revealed: @Todo(full tuple[...] support)

View File

@@ -22,7 +22,7 @@ reveal_type(sys.version_info[:2] == (3, 10)) # revealed: Literal[True]
### Grandchild
The same should work for arbitrarly nested sections:
The same should work for arbitrarily nested sections:
```py
reveal_type(sys.version_info[:2] == (3, 10)) # revealed: Literal[True]

View File

@@ -1,4 +1,4 @@
# Class defenitions in stubs
# Class definitions in stubs
## Cyclical class definition