spelling: arithmetic

This commit is contained in:
Josh Soref 2017-11-26 05:12:00 +00:00
parent 8a66cfb2af
commit 1d708d14f7
1 changed files with 1 additions and 1 deletions

View File

@ -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')