fix typo numeic -> numeric
authorLisandro Dalcin <dalcinl@gmail.com>
Tue, 5 Apr 2011 22:26:28 +0000 (19:26 -0300)
committerLisandro Dalcin <dalcinl@gmail.com>
Tue, 5 Apr 2011 22:26:28 +0000 (19:26 -0300)
Cython/Compiler/ExprNodes.py

index 5c7cf896b068dcd5c6a92f615fbdeb5451211a3e..6d68989c3ed8fe517cce846216b2e2c15f1e7d00 100755 (executable)
@@ -5295,7 +5295,7 @@ class UnaryPlusNode(UnopNode):
     operator = '+'
 
     def analyse_c_operation(self, env):
-        self.type = PyrexTypes.widest_numeic_type(
+        self.type = PyrexTypes.widest_numeric_type(
             self.operand.type, PyreXTypes.c_int_type)
 
     def py_operation_function(self):