Skip to content

Commit 60e7a5c

Browse files
committed
Do reviewer suggestions again
1 parent cadec39 commit 60e7a5c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sage/rings/function_field/jacobian_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,14 +656,14 @@ def __call__(self, x):
656656
True
657657
658658
If ``x`` is an effective divisor, it is checked that the degree
659-
is equal to the degree of the base divisor. See :issue:38623.
659+
is equal to the degree of the base divisor. See :issue:`38623`.
660660
661661
sage: K.<x> = FunctionField(GF(7))
662662
sage: _.<t> = K[]
663663
sage: F.<y> = K.extension(t^2 - x^6 - 3)
664664
sage: O = F.maximal_order()
665-
sage: D1 = (O.ideal(x + 1, y + 2)*O.ideal(x + 2, y + 2)).divisor()
666-
sage: I = O.ideal(x + 3, y+5)*O.ideal(x + 4, y + 5)*O.ideal(x + 5, y + 5)
665+
sage: D1 = (O.ideal(x + 1, y + 2) * O.ideal(x + 2, y + 2)).divisor()
666+
sage: I = O.ideal(x + 3, y+5) * O.ideal(x + 4, y + 5) * O.ideal(x + 5, y + 5)
667667
sage: D2 = I.divisor()
668668
sage: J = F.jacobian(model='hess')
669669
sage: J(D1)

src/sage/rings/function_field/jacobian_hess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ def _element_constructor_(self, x):
606606
"""
607607
Construct an element of ``self`` from ``x``.
608608
609-
If ``x`` is an effective divisor, then it is assumed to be of
609+
If ``x`` is an effective divisor, then it must be of
610610
degree `g`, the genus of the function field.
611611
612612
EXAMPLES::

0 commit comments

Comments
 (0)