From c40b0e25c1088c3ff2e14a768587b6457ce98ba9 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Sat, 12 Nov 2011 20:46:34 +0400 Subject: [PATCH] Simplify defoperator --- src/monger/operators.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monger/operators.clj b/src/monger/operators.clj index 742398c..2853a1b 100644 --- a/src/monger/operators.clj +++ b/src/monger/operators.clj @@ -4,7 +4,7 @@ [operator] (let [op# (str operator) op-sym# (symbol op#)] - `(def ~op-sym# (str ~op#)))) + `(def ~op-sym# ~op#))) (defoperator $gt) (defoperator $gte)