about summary refs log tree commit diff stats
path: root/apps/tile/word.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-03 14:04:35 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-03 14:04:35 -0800
commitda791479a0bd7f1d34c0ba06309cc1fb48bbe7a5 (patch)
treeb702c6eb9873f929270814dd29a64b4f3ca56ae8 /apps/tile/word.mu
parent85a29a4e4ed68e7ae35321113ff3d7aedb6afc4b (diff)
downloadmu-da791479a0bd7f1d34c0ba06309cc1fb48bbe7a5.tar.gz
7165
All tasks of https://github.com/akkartik/mu/issues/45#issuecomment-719990879
should now be complete.
Diffstat (limited to 'apps/tile/word.mu')
-rw-r--r--apps/tile/word.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/word.mu b/apps/tile/word.mu
index c51c4bf4..64d03ff8 100644
--- a/apps/tile/word.mu
+++ b/apps/tile/word.mu
@@ -176,7 +176,7 @@ fn cursor-at-start? _self: (addr word) -> _/eax: boolean {
   return result
 }
 
-fn cursor-at-end? _self: (addr word) -> result/eax: boolean {
+fn cursor-at-end? _self: (addr word) -> _/eax: boolean {
   var self/esi: (addr word) <- copy _self
   var data-ah/eax: (addr handle gap-buffer) <- get self, scalar-data
   var data/eax: (addr gap-buffer) <- lookup *data-ah