From dc3d06c7ae8655a49e44bcade944c9adc29b3eeb Mon Sep 17 00:00:00 2001 From: Jon Rafkind Date: Fri, 3 Aug 2012 19:26:46 -0600 Subject: [PATCH] [honu] change -> to = --- collects/tests/honu/operators.honu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/tests/honu/operators.honu b/collects/tests/honu/operators.honu index c7b20603c6..a5a2e18163 100644 --- a/collects/tests/honu/operators.honu +++ b/collects/tests/honu/operators.honu @@ -2,8 +2,8 @@ operator gg 2 'left function(left right){ - withSyntax left -> left, - right -> right { + withSyntax left = left, + right = right { syntax(left * 2 - right) } }