From 7be1d77360b5eaf0b23aa8eecb99e530dff4826d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 4 Jan 2023 13:53:27 +0100 Subject: [PATCH] Fix typo (#4398) --- docs/type-inference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```