Skip to content

Commit

Permalink
sagemathgh-39127: Minor docfix of interpolation() method
Browse files Browse the repository at this point in the history
    
Tiny fix.


### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->

- [x] The title is concise and informative.
- [x] The description explains in detail what this PR is about.
- [x] I have updated the documentation and checked the documentation
preview.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on. For example,
-->
<!-- - sagemath#12345: short description why this is a dependency -->
<!-- - sagemath#34567: ... -->
    
URL: sagemath#39127
Reported by: user202729
Reviewer(s): Martin Rubey, user202729
  • Loading branch information
Release Manager committed Jan 1, 2025
2 parents 80d396c + d1166e1 commit b37a09c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/rings/polynomial/multi_polynomial_ring_base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ cdef class MPolynomialRing_base(CommutativeRing):
Also, if the solution is not unique, it spits out one solution,
without any notice that there are more.
Lastly, the interpolation function for univariate polynomial rings
is called :meth:`lagrange_polynomial`.
For interpolation in the univariate case use
:meth:`~sage.rings.polynomial.polynomial_ring.PolynomialRing_field.lagrange_polynomial`.
.. WARNING::
Expand All @@ -453,7 +453,7 @@ cdef class MPolynomialRing_base(CommutativeRing):
.. SEEALSO::
:meth:`lagrange_polynomial<sage.rings.polynomial.polynomial_ring.PolynomialRing_field.lagrange_polynomial>`
:meth:`~sage.rings.polynomial.polynomial_ring.PolynomialRing_field.lagrange_polynomial`
"""
from sage.matrix.constructor import matrix
from sage.modules.free_module_element import vector
Expand Down

0 comments on commit b37a09c

Please sign in to comment.