about summary refs log tree commit diff stats
path: root/061text.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-16 23:19:59 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-16 23:19:59 -0700
commitb89b822439f47a490a1b764e14a1ed1b73059cba (patch)
tree8c01baef90f26f7797e2feb535bb8ccd4decd27e /061text.mu
parent5859d7056c951e56e3db760202801135784b4e5c (diff)
downloadmu-b89b822439f47a490a1b764e14a1ed1b73059cba.tar.gz
4260 - make address coercions explicit
'deaddress' is a terrible name. Hopefully I'll come up with something
better.
Diffstat (limited to '061text.mu')
-rw-r--r--061text.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/061text.mu b/061text.mu
index c2c8915e..ffc87140 100644
--- a/061text.mu
+++ b/061text.mu
@@ -3,7 +3,7 @@
 def equal a:text, b:text -> result:bool [
   local-scope
   load-inputs
-  an:num, bn:num <- copy a, b
+  an:num, bn:num <- deaddress a, b
   address-equal?:boolean <- equal an, bn
   return-if address-equal?, 1/true
   return-unless a, 0/false