summaryrefslogtreecommitdiff
path: root/py/runtime.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-02-24 16:46:38 +0100
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-02-24 16:46:38 +0100
commit75d6abe3bb57cf75915a056e5e98e4b79efec2ad (patch)
treed61e76e2a6c71482515fb1f156b501833d38e165 /py/runtime.c
parent35071b36811b3d1043e0a57018b81798b60d72fa (diff)
Correct name of mp_raise_NotImplementedError to make error name.
Diffstat (limited to 'py/runtime.c')
-rw-r--r--py/runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c
index 5ebee1010..1177c60c0 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -1479,7 +1479,7 @@ NORETURN void mp_raise_RuntimeError(const char *msg) {
mp_raise_msg(&mp_type_RuntimeError, msg);
}
-NORETURN void mp_raise_NotImplementError(const char *msg) {
+NORETURN void mp_raise_NotImplementedError(const char *msg) {
mp_raise_msg(&mp_type_NotImplementedError, msg);
}