Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #221 from matthew1534/master
Remove isneg from docs
  • Loading branch information
MikeMcl committed Feb 12, 2019
2 parents bde4ac1 + cd65f21 commit ccd14b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/API.html
Expand Up @@ -1279,7 +1279,7 @@ <h5 id="isZ">isZero<code class='inset'>.isZero() <i>&rArr; boolean</i></code></h
</p>
<pre>
x = new BigNumber(-0)
x.isZero() && x.isneg() // true
x.isZero() && x.isNegative() // true
y = new BigNumber(Infinity)
y.isZero() // false</pre>
<p>Note: <code>n == 0</code> can be used if <code>n &gt;= Number.MIN_VALUE</code>.</p>
Expand Down

0 comments on commit ccd14b4

Please sign in to comment.