Skip to content

Commit e49fe2c

Browse files
committed
fix: spelling of "implicitly"
1 parent 7788c21 commit e49fe2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/generics.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ infer the most flexible variance for each class type variable. Here
641641

642642
.. code-block:: python
643643
644-
class Box[T]: # this type is implilicitly covariant
644+
class Box[T]: # this type is implicitly covariant
645645
def __init__(self, content: T) -> None:
646646
self._content = content
647647
@@ -663,7 +663,7 @@ the attribute as ``Final``, the class could still be made covariant:
663663
664664
from typing import Final
665665
666-
class Box[T]: # this type is implilicitly covariant
666+
class Box[T]: # this type is implicitly covariant
667667
def __init__(self, content: T) -> None:
668668
self.content: Final = content
669669

0 commit comments

Comments
 (0)