From 734125938d4653459593ebd28a0aec086efb1f27 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 2 Apr 2017 16:30:04 +0100 Subject: [PATCH] Fix misleading documentation for math.exp. (#951) --- Doc/library/math.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst index da2b8cc586..b1f56929c3 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) -- 2.50.1