spelling
authorRobert Bradshaw <robertwb@gmail.com>
Sat, 2 Nov 2013 05:44:47 +0000 (22:44 -0700)
committerRobert Bradshaw <robertwb@gmail.com>
Sat, 2 Nov 2013 05:44:47 +0000 (22:44 -0700)
Cython/Compiler/ModuleNode.py

index 75fc208..d9a62f6 100644 (file)
@@ -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