Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove documentation of factorial(n,k) #17055

Merged
merged 1 commit into from
Jun 21, 2016
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
7 changes: 0 additions & 7 deletions base/docs/helpdb/Base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6993,13 +6993,6 @@ If `n` is not an `Integer`, `factorial(n)` is equivalent to [`gamma(n+1)`](:func
"""
factorial(n)

"""
factorial(n,k)

Compute `factorial(n)/factorial(k)`.
"""
factorial(n,k)

"""
bitrand([rng], [dims...])

Expand Down
6 changes: 0 additions & 6 deletions doc/stdlib/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1347,12 +1347,6 @@ Mathematical Functions

Factorial of ``n``\ . If ``n`` is an :obj:`Integer`\ , the factorial is computed as an integer (promoted to at least 64 bits). Note that this may overflow if ``n`` is not small, but you can use ``factorial(big(n))`` to compute the result exactly in arbitrary precision. If ``n`` is not an ``Integer``\ , ``factorial(n)`` is equivalent to :func:`gamma(n+1) <gamma>`\ .

.. function:: factorial(n,k)

.. Docstring generated from Julia source

Compute ``factorial(n)/factorial(k)``\ .

.. function:: gcd(x,y)

.. Docstring generated from Julia source
Expand Down