diff --git a/utils/math/prec_dec.go b/utils/math/prec_dec.go index 8af1eb425..327e4c9d1 100644 --- a/utils/math/prec_dec.go +++ b/utils/math/prec_dec.go @@ -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)