about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-08-22 14:25:29 -0700
committerKartik Agaram <vc@akkartik.com>2020-08-22 14:25:29 -0700
commitdb894e7968808512392c46d62b2bee68b891db04 (patch)
treed3a85aa66424515ddc283c7fdc93646e2ceab6fe /apps
parentef8e98dd062473e3dff77a4a576c6078a9a3d028 (diff)
downloadmu-db894e7968808512392c46d62b2bee68b891db04.tar.gz
6726
Diffstat (limited to 'apps')
-rwxr-xr-xapps/mubin388330 -> 388320 bytes
-rw-r--r--apps/mu.subx4
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/mu b/apps/mu
index b57801de..8bf88983 100755
--- a/apps/mu
+++ b/apps/mu
Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx
index 28a8c886..c7076627 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -7062,7 +7062,7 @@ test-index-needs-offset-type:
 #?     # }}}
     # check output
     (check-stream-equal _test-output-stream  ""  "F - test-index-needs-offset-type: output should be empty")
-    (check-next-stream-line-equal _test-error-stream  "fn foo: stmt index: cannot take an int for array 'a'; create an offset instead. See mu_summary for details."  "F - test-index-needs-offset-type: error message")
+    (check-next-stream-line-equal _test-error-stream  "fn foo: stmt index: cannot take an int for array 'a'; create an offset instead. See mu.md for details."  "F - test-index-needs-offset-type: error message")
     # check that stop(1) was called
     (check-ints-equal *(edx+4) 2 "F - test-index-needs-offset-type: exit status")
     # don't restore from ebp
@@ -13688,7 +13688,7 @@ $check-mu-index-stmt:error-index-needs-offset:
     (lookup *eax *(eax+4))  # Stmt-var-value Stmt-var-value => eax
     (lookup *eax *(eax+4))  # Var-name Var-name => eax
     (write-buffered *(ebp+0x10) %eax)
-    (write-buffered *(ebp+0x10) "'; create an offset instead. See mu_summary for details.\n")
+    (write-buffered *(ebp+0x10) "'; create an offset instead. See mu.md for details.\n")
     (flush *(ebp+0x10))
     (stop *(ebp+0x14) 1)
     # never gets here