aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:57:41 +0000
committerJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:57:41 +0000
commit7771d267f5986135f38075e2aa86444e77fcff9e (patch)
tree627f768273021f01e67c428cc92bb8db8fadcd65
parent05f684b4fc65d197e0d1ace6509a5ece30ff9ad2 (diff)
downloadmeson-7771d267f5986135f38075e2aa86444e77fcff9e.zip
meson-7771d267f5986135f38075e2aa86444e77fcff9e.tar.gz
meson-7771d267f5986135f38075e2aa86444e77fcff9e.tar.bz2
spelling: precedence
-rw-r--r--test cases/common/68 number arithmetic/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/test cases/common/68 number arithmetic/meson.build b/test cases/common/68 number arithmetic/meson.build
index 02c7878..495a83e 100644
--- a/test cases/common/68 number arithmetic/meson.build
+++ b/test cases/common/68 number arithmetic/meson.build
@@ -25,16 +25,16 @@ assert((5 % 2) == 1, 'Integer modulo (odd) is broken')
assert((4 % 2) == 0, 'Integer modulo (even) is broken')
if 2 * 1 % 2 != 0
- error('Modulo precendence with multiplication is broken')
+ error('Modulo precedence with multiplication is broken')
endif
if 2 + 1 % 2 != 3
- error('Modulo precendence with addition is broken')
+ error('Modulo precedence with addition is broken')
endif
if 9 / 9 % 2 != 1
- error('Modulo precendence with division is broken')
+ error('Modulo precedence with division is broken')
endif
if 9 - 9 % 2 != 8
- error('Modulo precendence with subtraction is broken')
+ error('Modulo precedence with subtraction is broken')
endif
assert(2.is_even(), 'int is_even() broken for even value')