Skip to content

Commit f033e82

Browse files
committed
fix whitespaces in docstring
1 parent 8360ab5 commit f033e82

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/sage/rings/finite_rings/finite_field_base.pyx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2147,7 +2147,7 @@ cdef class FiniteField(Field):
21472147
sage: f = R.random_element(degree=15)
21482148
sage: f.roots()
21492149
[(117558869610275297997958296126212805270, 1)]
2150-
2150+
21512151
We can take the roots of a polynomial defined over a finite field without multiplicities::
21522152
21532153
sage: set_random_seed(31337)
@@ -2156,7 +2156,7 @@ cdef class FiniteField(Field):
21562156
sage: f = R.random_element(degree=150)
21572157
sage: f.roots(multiplicities=False)
21582158
[116560079209701720510648792531840294827]
2159-
2159+
21602160
We can take the roots of a polynomial defined over a finite field extension::
21612161
21622162
sage: set_random_seed(31337)
@@ -2167,7 +2167,7 @@ cdef class FiniteField(Field):
21672167
[(a^9 + a^8 + a^6 + a^4 + a^2, 1)]
21682168
sage: f.roots(multiplicities=False)
21692169
[a^9 + a^8 + a^6 + a^4 + a^2]
2170-
2170+
21712171
We can take the roots of a high degree polynomial in a reasonable time::
21722172
21732173
sage: set_random_seed(31337)
@@ -2196,7 +2196,6 @@ cdef class FiniteField(Field):
21962196
g = pow(x, p, f) - x
21972197
g = f.gcd(g)
21982198
return g._roots_from_factorization(g.factor(), False)
2199-
22002199

22012200

22022201
def unpickle_FiniteField_ext(_type, order, variable_name, modulus, kwargs):

0 commit comments

Comments
 (0)