Skip to content

Commit 62ccba9

Browse files
committed
fix: remove extra "p"
1 parent 59a8383 commit 62ccba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/generics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ example (Python 3.12 syntax):
146146
from typing import Mapping, Iterator
147147
148148
# This is a generic subclass of Mapping
149-
class MyMapp[KT, VT](Mapping[KT, VT]):
149+
class MyMap[KT, VT](Mapping[KT, VT]):
150150
def __getitem__(self, k: KT) -> VT: ...
151151
def __iter__(self) -> Iterator[KT]: ...
152152
def __len__(self) -> int: ...

0 commit comments

Comments
 (0)