Skip to content

Commit

Permalink
cleanup redundant docstring for nextprod (JuliaLang#16684)
Browse files Browse the repository at this point in the history
Was caused by the merge of docstring and comment in 93911dd.

[ci skip]
  • Loading branch information
rfourquet authored and stevengj committed Jun 1, 2016
1 parent bdcd426 commit a7fa96f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
6 changes: 0 additions & 6 deletions base/combinatorics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,6 @@ end
Next integer not less than `n` that can be written as ``\\prod k_i^{p_i}`` for integers
``p_1``, ``p_2``, etc.
For a list of integers i1, i2, i3, find the smallest
i1^n1 * i2^n2 * i3^n3 >= x
for integer n1, n2, n3
"""
function nextprod(a::Vector{Int}, x)
if x > typemax(Int)
Expand Down
8 changes: 0 additions & 8 deletions doc/stdlib/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1421,14 +1421,6 @@ Mathematical Functions
Next integer not less than ``n`` that can be written as :math:`\prod k_i^{p_i}` for integers :math:`p_1`\ , :math:`p_2`\ , etc.

For a list of integers i1, i2, i3, find the smallest

.. code-block:: julia
i1^n1 * i2^n2 * i3^n3 >= x
for integer n1, n2, n3

.. function:: invmod(x,m)

.. Docstring generated from Julia source
Expand Down

0 comments on commit a7fa96f

Please sign in to comment.