Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
21248: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
bhutz committed Sep 30, 2016
1 parent 5848b82 commit 0818825
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/rings/polynomial/multi_polynomial.pyx
Expand Up @@ -1863,7 +1863,7 @@ cdef class MPolynomial(CommutativeRingElement):
- ``return_conjugation`` -- boolean. Returns element of `SL(2, \ZZ)` (default:True)
- ``error_limit`` -- sets the error tolerence (default:0.000001)
- ``error_limit`` -- sets the error tolerance (default:0.000001)
OUTPUT:
Expand Down Expand Up @@ -1940,7 +1940,7 @@ cdef class MPolynomial(CommutativeRingElement):
[ 0 -1]
)
An example where precision needs to be incresed::
An example where precision needs to be increased::
sage: R.<x,h> = PolynomialRing(QQ)
sage: f = -1872*x^5*h - 1375452*x^4*h^2 - 404242956*x^3*h^3 - 59402802888*x^2*h^4\
Expand Down Expand Up @@ -2081,7 +2081,7 @@ cdef class MPolynomial(CommutativeRingElement):
L=[]
newton = True
err = z.diameter()
# making sure multiplicity isn't too large useing covergence conditions in paper
# making sure multiplicity isn't too large using covergence conditions in paper
for p,e in L1:
if e > self.degree()/2:
newton = False
Expand Down

0 comments on commit 0818825

Please sign in to comment.