about summary refs log tree commit diff stats
path: root/linux/401test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-08 23:49:07 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-03-08 23:50:35 -0800
commitcec5ef31b3e383b7bdffe049a8c502a563f6b491 (patch)
tree9f6b410cc16991a709dc59258ae29dacd2feb98b /linux/401test.mu
parent6508ab51ccd6a41d6d1da3502359e80611d8bda3 (diff)
downloadmu-cec5ef31b3e383b7bdffe049a8c502a563f6b491.tar.gz
update vocabulary documentation
Top-level and linux/ now have separate vocabulary.md files.
Diffstat (limited to 'linux/401test.mu')
-rw-r--r--linux/401test.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/401test.mu b/linux/401test.mu
index 65b765df..03acabf1 100644
--- a/linux/401test.mu
+++ b/linux/401test.mu
@@ -1,11 +1,11 @@
 # Some helpers for Mu tests.
 
-fn check-true val: boolean, msg: (addr array byte) {
+fn check val: boolean, msg: (addr array byte) {
   var tmp/eax: int <- copy val
   check-ints-equal tmp, 1, msg
 }
 
-fn check-false val: boolean, msg: (addr array byte) {
+fn check-not val: boolean, msg: (addr array byte) {
   var tmp/eax: int <- copy val
   check-ints-equal tmp, 0, msg
 }