Skip to content

Commit

Permalink
update isapprox signature to match helpdb.jl in #12472
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Aug 10, 2015
1 parent 80be6dc commit d84fd1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/stdlib/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ Mathematical Operators
Mathematical Functions
----------------------

.. function:: isapprox(x::Number, y::Number; rtol::Real=sqrt(eps), atol::Real=0)
.. function:: isapprox(x, y; rtol::Real=sqrt(eps), atol::Real=0)

Inexact equality comparison: ``true`` if ``abs(x-y) <= atol + rtol*max(abs(x), abs(y))``. The default ``atol`` is zero and the default ``rtol`` depends on the types of ``x`` and ``y``.

Expand Down

0 comments on commit d84fd1e

Please sign in to comment.