about summary refs log tree commit diff stats
path: root/tutorial/task4.mu
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/task4.mu')
-rw-r--r--tutorial/task4.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/task4.mu b/tutorial/task4.mu
index ca8da8f4..786219cf 100644
--- a/tutorial/task4.mu
+++ b/tutorial/task4.mu
@@ -8,7 +8,7 @@ fn the-answer -> _/eax: int {
 
 fn test-the-answer {
   var result/eax: int <- the-answer
-  check-ints-equal result, 0x2a, "F - the-answer should return 42, but didn't."
+  check-ints-equal result, 0x2a, "F - the-answer should return 42, but didn't"
 }
 
 fn main {