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 | b9b0a580f22b411df3993a85643b3df8e96f0eaa (patch) | |
tree | 9be43a651d40607f87ec3d42d21627bcdf45b06f /Doc/library | |
parent | 3aee092ecb53b234073028e3870502713b429f12 (diff) | |
download | cpython-b9b0a580f22b411df3993a85643b3df8e96f0eaa.zip cpython-b9b0a580f22b411df3993a85643b3df8e96f0eaa.tar.gz cpython-b9b0a580f22b411df3993a85643b3df8e96f0eaa.tar.bz2 |
use imperative
Diffstat (limited to 'Doc/library')
-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 562388e..22d2316 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 |