[pypy-commit] pypy default: Merged in fniephaus/pypy-1/fniephaus/fix-typo-1488123166752 (pull request #519)

arigo pypy.commits at gmail.com
Sat Mar 11 02:42:02 EST 2017


Author: Armin Rigo <armin.rigo at gmail.com>
Branch: 
Changeset: r90627:24f529c9697d
Date: 2017-03-11 07:41 +0000
http://bitbucket.org/pypy/pypy/changeset/24f529c9697d/

Log:	Merged in fniephaus/pypy-1/fniephaus/fix-typo-1488123166752 (pull
	request #519)

	Fix typo

diff --git a/rpython/jit/codewriter/call.py b/rpython/jit/codewriter/call.py
--- a/rpython/jit/codewriter/call.py
+++ b/rpython/jit/codewriter/call.py
@@ -202,12 +202,12 @@
         ARGS = FUNC.ARGS
         if NON_VOID_ARGS != [T for T in ARGS if T is not lltype.Void]:
             raise Exception(
-                "in operation %r: caling a function with signature %r, "
+                "in operation %r: calling a function with signature %r, "
                 "but passing actual arguments (ignoring voids) of types %r"
                 % (op, FUNC, NON_VOID_ARGS))
         if RESULT != FUNC.RESULT:
             raise Exception(
-                "in operation %r: caling a function with signature %r, "
+                "in operation %r: calling a function with signature %r, "
                 "but the actual return type is %r" % (op, FUNC, RESULT))
         # ok
         # get the 'elidable' and 'loopinvariant' flags from the function object


More information about the pypy-commit mailing list