From 2115a1484f19dfc16568bb05fde927cb049307a4 Mon Sep 17 00:00:00 2001 From: Guo Ci Date: Tue, 14 Oct 2025 12:19:59 -0400 Subject: [PATCH] Fix typo in generics documentation --- docs/source/generics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/generics.rst b/docs/source/generics.rst index 4755c4f17ec8..bdd6e333f895 100644 --- a/docs/source/generics.rst +++ b/docs/source/generics.rst @@ -1165,7 +1165,7 @@ This example correctly uses a covariant type variable: See :ref:`variance-of-generics` for more about variance. -Generic protocols can also be recursive. Example (Python 3.12 synta): +Generic protocols can also be recursive. Example (Python 3.12 syntax): .. code-block:: python