diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-12 23:15:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-12 23:15:53 (GMT) |
commit | 19a3f17cb31a294e46ba82a34c887e3f16807505 (patch) | |
tree | 80e1feffba5875f003e071331db229c9c22a92f4 | |
parent | e8944cb217747ccf32073aa284dc28ffd1f8dd55 (diff) | |
download | cpython-19a3f17cb31a294e46ba82a34c887e3f16807505.zip cpython-19a3f17cb31a294e46ba82a34c887e3f16807505.tar.gz cpython-19a3f17cb31a294e46ba82a34c887e3f16807505.tar.bz2 |
use imperative
-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 3c41672..0fc7c7c 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -280,12 +280,12 @@ Angular conversion .. function:: degrees(x) - Converts angle *x* from radians to degrees. + Convert angle *x* from radians to degrees. .. function:: radians(x) - Converts angle *x* from degrees to radians. + Convert angle *x* from degrees to radians. Hyperbolic functions -------------------- |