typo fix for pep 544 (#482)

This commit is contained in:
JR Heard 2017-12-04 08:44:14 -08:00 committed by Guido van Rossum
parent 6b32e0d8ae
commit 9873d9fb19
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ the class actually implements the protocol correctly::
# Type checker might warn that 'intensity' is not defined
A class can explicitly inherit from multiple protocols and also form normal
A class can explicitly inherit from multiple protocols and also from normal
classes. In this case methods are resolved using normal MRO and a type checker
verifies that all subtyping are correct. The semantics of ``@abstractmethod``
is not changed, all of them must be implemented by an explicit subclass