about summary refs log tree commit diff stats
path: root/cpp/string-test.mu
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/string-test.mu')
-rw-r--r--cpp/string-test.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/string-test.mu b/cpp/string-test.mu
index 158c59fd..5470af60 100644
--- a/cpp/string-test.mu
+++ b/cpp/string-test.mu
@@ -1,6 +1,6 @@
 recipe main [
   default-space:address:space <- new location:type, 30:literal
-  x:address:array:character <- new [abcd]
+  x:address:array:character <- new [abc]
   y:address:array:character <- new [abc]
   3:boolean/raw <- string-equal x:address:array:character, y:address:array:character
 ]