diff --git a/docs/type-inference.md b/docs/type-inference.md index 18c9ac9a1..f0bc4d146 100644 --- a/docs/type-inference.md +++ b/docs/type-inference.md @@ -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) ```