commit | 4612671df2742eade8ecf8003a6ce1247973c135 | [log] [tgz] |
---|---|---|
author | Akshay Sharma <akshay.sharma09695@gmail.com> | Fri May 31 22:11:17 2019 +0530 |
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | Fri May 31 12:41:17 2019 -0400 |
tree | e57e3dec7ebf82e4e5d2943ed011dde5e7037810 | |
parent | 8cbb5b6625268400d6e9092b75b06d6f90398dc9 [diff] [blame] |
bpo-25735: math.factorial doc should mention integer return type (GH-6420)
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index bf660ae..b51e96b 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst
@@ -50,7 +50,7 @@ .. function:: factorial(x) - Return *x* factorial. Raises :exc:`ValueError` if *x* is not integral or + Return *x* factorial as an integer. Raises :exc:`ValueError` if *x* is not integral or is negative.