From 1d708d14f7900d357107c6a48ebe718ba14bde51 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 26 Nov 2017 05:12:00 +0000 Subject: [PATCH] spelling: arithmetic --- test cases/common/71 arithmetic bidmas/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test cases/common/71 arithmetic bidmas/meson.build b/test cases/common/71 arithmetic bidmas/meson.build index 2a530c87e..c7334b48f 100644 --- a/test cases/common/71 arithmetic bidmas/meson.build +++ b/test cases/common/71 arithmetic bidmas/meson.build @@ -1,7 +1,7 @@ project('arithmetic bidmas', 'c') if 5 * 3 - 6 / 2 + 1 != 13 - error('Arithemtic bidmas broken') + error('Arithmetic bidmas broken') endif if 5 * (3 - 6 / 2) + 1 != 1 error('Arithmetic bidmas with brackets broken')