Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Number-theoretic and representation functions

.. 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.


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added documentation for func factorial to indicate that returns integer values

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need a NEWS entry for adding 3 words to the doc? I don't think so.