Skip to content

Commit

Permalink
upgrade parser; tag 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Dec 18, 2024
1 parent 06954d9 commit 73fe21c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions moon.mod.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "tiye/cirru-edn",
"version": "0.0.3",
"version": "0.0.4",
"deps": {
"tiye/cirru-parser": "0.0.9"
"tiye/cirru-parser": "0.0.10"
},
"readme": "README.md",
"repository": "https://github.com/Cirru/cirru-edn.mbt",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/edn.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub fn compare(self : Edn, right : Edn) -> Int {
(Edn::Nil, Edn::Nil) => 0
(Edn::Nil, _) => -1
(_, Edn::Nil) => 1
(Edn::Bool(a), Edn::Bool(b)) => a.op_compare(b)
(Edn::Bool(a), Edn::Bool(b)) => a.compare(b)
(Edn::Bool(_), _) => -1
(_, Edn::Bool(_)) => 1
(Edn::Number(a), Edn::Number(b)) => a.compare(b)
Expand Down

0 comments on commit 73fe21c

Please # to comment.