diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2017-04-02 15:30:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-04-02 15:30:04 (GMT) |
commit | 734125938d4653459593ebd28a0aec086efb1f27 (patch) | |
tree | bd36163b2ad614b9ab38611c95af9f91db3e01a1 | |
parent | e8c763128fb459c5c98194e4312f31493c0f12df (diff) | |
download | cpython-734125938d4653459593ebd28a0aec086efb1f27.zip cpython-734125938d4653459593ebd28a0aec086efb1f27.tar.gz cpython-734125938d4653459593ebd28a0aec086efb1f27.tar.bz2 |
Fix misleading documentation for math.exp. (#951)
-rw-r--r-- | Doc/library/math.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index da2b8cc..b1f5692 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -199,8 +199,8 @@ Power and logarithmic functions .. function:: exp(x) - Return ``e**x``. - + Return e raised to the power *x*, where e = 2.718281... is the base + of natural logarithms. .. function:: expm1(x) |