Skip to content

Commit

Permalink
fix return; bump 0.1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Oct 29, 2020
1 parent 5ea949c commit 19f645f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ternary_tree/list.nim
Expand Up @@ -830,7 +830,7 @@ proc reverse*[T](tree: TernaryTreeList[T]): TernaryTreeList[T] =

case tree.kind
of ternaryTreeLeaf:
tree
return tree
of ternaryTreeBranch:
return TernaryTreeList[T](
kind: ternaryTreeBranch, size: tree.size,
Expand Down
2 changes: 1 addition & 1 deletion ternary_tree.nimble
@@ -1,6 +1,6 @@
# Package

version = "0.1.24"
version = "0.1.25"
author = "jiyinyiyong"
description = "Ternary tree of list data structure"
license = "MIT"
Expand Down

0 comments on commit 19f645f

Please sign in to comment.