Skip to content

Commit

Permalink
Fix a lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstone committed Oct 24, 2015
1 parent 9338102 commit 3b1c8fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ot/ot.go
Expand Up @@ -76,9 +76,8 @@ func AsRuneTree(s string) Tree {
func min(a, b int) int {
if a < b {
return a
} else {
return b
}
return b
}

func Apply(o Op, t *Tree) error {
Expand Down

0 comments on commit 3b1c8fc

Please sign in to comment.