Skip to content

Commit

Permalink
fix in prec_dec.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Hack666r authored Jan 28, 2025
1 parent be53165 commit 52403ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/math/prec_dec.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ func (d PrecDec) TruncatePrecDec() PrecDec {
return NewPrecDecFromBigInt(chopPrecisionAndTruncateNonMutative(d.i))
}

// Ceil returns the smallest interger value (as a decimal) that is greater than
// Ceil returns the smallest integer value (as a decimal) that is greater than
// or equal to the given decimal.
func (d PrecDec) Ceil() PrecDec {
tmp := new(big.Int).Set(d.i)
Expand Down

0 comments on commit 52403ea

Please sign in to comment.