summaryrefslogtreecommitdiff
path: root/Cython/Compiler/ModuleNode.py
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2013-11-01 22:44:47 -0700
committerRobert Bradshaw <robertwb@gmail.com>2013-11-01 22:44:47 -0700
commit2e298b7efce37db0e22e144b81b4a1c5eba8e594 (patch)
tree7e9fb4f28cc166b67791bb35cc8cbf0e2d125bed /Cython/Compiler/ModuleNode.py
parent37f9fcff2c0e8517f8fdda5d87ab7ccb8f6f9243 (diff)
downloadcython-2e298b7efce37db0e22e144b81b4a1c5eba8e594.tar.gz
spelling
Diffstat (limited to 'Cython/Compiler/ModuleNode.py')
-rw-r--r--Cython/Compiler/ModuleNode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py
index 75fc2083b..d9a62f63e 100644
--- a/Cython/Compiler/ModuleNode.py
+++ b/Cython/Compiler/ModuleNode.py
@@ -2521,7 +2521,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
"if (PyType_Ready(&%s) < 0) %s" % (
typeobj_cname,
code.error_goto(entry.pos)))
- # Don't inherit tp_dict from builting types, restoring the
+ # Don't inherit tp_dict from builtin types, restoring the
# behavior of using tp_repr or tp_str instead.
code.putln("%s.tp_print = 0;" % typeobj_cname)
# Fix special method docstrings. This is a bit of a hack, but