diff --git a/spec.emu b/spec.emu index b13bb07..4b9ca60 100644 --- a/spec.emu +++ b/spec.emu @@ -454,7 +454,7 @@ location: https://github.com/tc39/proposal-decimal/

Decimal128.prototype.mantissa ( )

-

This method returns a Decimal128 value representing the significand of the current Decimal128 object, which is the mathematical value _n_ for which the current Decimal128 object, _v_, there exists an integer _e_ such such that _v_ = _s_ × 10_e_ and 1 ≤ abs(_s_) < 10. IF the current Decimal128 object is a zero, it returns a zero.

+

This method returns a Decimal128 value representing the significand of the current Decimal128 object, which is the mathematical value _s_ for which the current Decimal128 object, _v_, there exists an integer _e_ such such that _v_ = _s_ × 10_e_ and 1 ≤ abs(_s_) < 10. If the current Decimal128 object is a zero, it returns a zero.

It performs the following steps when called:

1. Let _O_ be the *this* value.