summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-02 16:25:02 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-02 16:25:02 (GMT)
commitd894027ec1321c2ca5c13d6dad6ef920962caff4 (patch)
tree1c330c52e0fc91c87902b440bf987a7f58fedf52
parent3b4d30a27bd6b72bcf8b160e8e3ca860265b1655 (diff)
parenta7db0576acd6c90b6e0cb10f35cd3e898330cf01 (diff)
downloadcpython-d894027ec1321c2ca5c13d6dad6ef920962caff4.zip
cpython-d894027ec1321c2ca5c13d6dad6ef920962caff4.tar.gz
cpython-d894027ec1321c2ca5c13d6dad6ef920962caff4.tar.bz2
Fixed a typo.
-rw-r--r--Doc/c-api/object.rst2
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).