Skip to content

Commit

Permalink
Fixed incorrect order of operations
Browse files Browse the repository at this point in the history
  • Loading branch information
jbester committed Nov 29, 2016
1 parent 7040eb2 commit 6f19667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cljext/math.clj
Expand Up @@ -442,9 +442,9 @@ expr - expression to sum
(defop '<= 40)
(defop '>= 40)
(defop '- 50)
(defop '+ 60)
(defop '+ 50)
(defop '/ 70)
(defop '* 80)
(defop '* 70)
(defop 'mod 90 'rem)
(defop '** 100 'cljext.math/** )

Expand Down

0 comments on commit 6f19667

Please sign in to comment.