Skip to content

Commit ba76a90

Browse files
committed
Fix some typo
1 parent 766c7a0 commit ba76a90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/sage/rings/padics/factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,7 +1643,7 @@ class Zp_class(UniqueFactory):
16431643
1 + 2*5^2 + 5^3
16441644
16451645
The floating point case is similar to the fixed modulus type
1646-
in that elements do not trac their own precision. However, relative
1646+
in that elements do not track their own precision. However, relative
16471647
precision is truncated with each operation rather than absolute precision.
16481648
16491649
On the contrary, the lattice type tracks precision using lattices
@@ -2196,7 +2196,7 @@ def Zq(q, prec=None, type='capped-rel', modulus=None, names=None,
21962196
2*3^2 + (2*a + 2)*3^3
21972197
21982198
The floating point case is similar to the fixed modulus type
2199-
in that elements do not trac their own precision. However, relative
2199+
in that elements do not track their own precision. However, relative
22002200
precision is truncated with each operation rather than absolute precision.
22012201
22022202
MODULUS:

src/sage/rings/polynomial/binary_form_reduce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def covariant_z0(F, z0_cov=False, prec=53, emb=None, error_limit=0.000001):
192192
FM = f # for Julia's invariant
193193
else:
194194
# solve the minimization problem for 'true' covariant
195-
CF = ComplexIntervalField(prec=prec) # keeps trac of our precision error
195+
CF = ComplexIntervalField(prec=prec) # keeps track of our precision error
196196
z = CF(z)
197197
FM = F(list(mat * vector(R.gens()))).subs({R.gen(1): 1}).univariate_polynomial()
198198
from sage.rings.polynomial.complex_roots import complex_roots

0 commit comments

Comments
 (0)