Skip to content

Commit

Permalink
Fix typo (#4398)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jan 4, 2023
1 parent fb563db commit 7be1d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/type-inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def func1(a: int):
var2 = (a, a)

# If you want the type to be tuple[int, ...]
# (i.e. a homogenous tuple of indeterminate length),
# (i.e. a homogeneous tuple of indeterminate length),
# use a type annotation.
var3: tuple[int, ...] = (a, a)
```
Expand Down

0 comments on commit 7be1d77

Please sign in to comment.