From e44f5e00c72aa3bf2200015aef95cd0d1f6de315 Mon Sep 17 00:00:00 2001 From: scottolsen Date: Tue, 19 May 2020 16:54:36 -0400 Subject: [PATCH] Fix erroneous implements call for PairRef.> --- core/Tuples.carp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Tuples.carp b/core/Tuples.carp index 738665ca..84eab483 100644 --- a/core/Tuples.carp +++ b/core/Tuples.carp @@ -14,7 +14,7 @@ (defn > [p1 p2] (PairRef.< p2 p1))) - (implements > PairRef.=) + (implements > PairRef.>) (defmodule Pair (defn init-from-refs [r1 r2]