Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kumakichi authored and morlay committed Dec 16, 2021
1 parent f0a09b1 commit 79d97c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/def_column.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (c *Column) Incr(d int) SqlExpr {
return Expr("? + ?", c, d)
}

func (c *Column) Desc(d int) SqlExpr {
func (c *Column) Dec(d int) SqlExpr {
return Expr("? - ?", c, d)
}

Expand Down

0 comments on commit 79d97c4

Please sign in to comment.