diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-02 16:24:41 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-02 16:24:41 (GMT) |
commit | a7db0576acd6c90b6e0cb10f35cd3e898330cf01 (patch) | |
tree | c4b35d1bd53bdad9c0deed02a4bd1a148ef27698 | |
parent | bbd95a9361cfa8a97d94f6d598e84dfc5e17a1f6 (diff) | |
download | cpython-a7db0576acd6c90b6e0cb10f35cd3e898330cf01.zip cpython-a7db0576acd6c90b6e0cb10f35cd3e898330cf01.tar.gz cpython-a7db0576acd6c90b6e0cb10f35cd3e898330cf01.tar.bz2 |
Fixed a typo.
-rw-r--r-- | Doc/c-api/object.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 187ac01..97b45b1 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -203,7 +203,7 @@ Object Protocol i.e. contained in ``cls.__mro__``. Normally only class objects, i.e. instances of :class:`type` or a derived - class, are considered classes. However, objects can override this by haivng + class, are considered classes. However, objects can override this by having a :attr:`__bases__` attribute (which must be a tuple of base classes). |