Skip to content

Commit 5f76571

Browse files
committed
typos
1 parent 1e75afd commit 5f76571

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sage/rings/function_field/drinfeld_modules/drinfeld_module.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ def is_isomorphic(self, other, absolutely=False):
12991299
# Check if there exists u such that u*self_X = other_X*u:
13001300
# if self_X = a_0 + a_1*t + ... + a_r*t^r
13011301
# and other_x = b_0 + b_1*t + ... + b_r*t^r
1302-
# this reduced to finding solution of the system:
1302+
# this reduces to find a solution of the system:
13031303
# b_i * u^(q^i - 1) = a_i (0 <= i <= r)
13041304
# which, using gcds, can be reduced to a unique equation
13051305
# of the form u^e = ue.
@@ -1326,9 +1326,9 @@ def is_isomorphic(self, other, absolutely=False):
13261326
if A[i] != B[i] * ue**f:
13271327
return False
13281328
# Solve the equation u^e = ue
1329-
# - when absolutely=True, on the algebraic closure (then a
1329+
# - when absolutely=True, over the algebraic closure (then a
13301330
# solution always exists)
1331-
# - when absolutely=False, on the ground field.
1331+
# - when absolutely=False, over the ground field.
13321332
if absolutely:
13331333
return True
13341334
else:

src/sage/rings/function_field/drinfeld_modules/finite_drinfeld_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ def is_ordinary(self):
522522
r"""
523523
Return ``True`` if this Drinfeld module is ordinary.
524524
525-
A Drinfeld module is supersingular if and only if its
525+
A Drinfeld module is ordinary if and only if its
526526
height is one.
527527
528528
EXAMPLES::

0 commit comments

Comments
 (0)