Skip to content

Commit 98534b1

Browse files
committed
Move mention of accessor functions to implementation section
1 parent c778285 commit 98534b1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/sage/rings/laurent_series_ring_element.pyx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ as a power of the variable times the unit part (which need not be a
4040
unit - it's a polynomial with nonzero constant term). The zero
4141
Laurent series has unit part 0.
4242
43+
For a Laurent series internally represented as `t^n \cdot f` where
44+
`t` is the variable, `f` can be accessed through :meth:`valuation_zero_part`
45+
and `n` can be accessed through :meth:`valuation`.
46+
4347
AUTHORS:
4448
4549
- William Stein: original version
@@ -97,11 +101,9 @@ cdef class LaurentSeries(AlgebraElement):
97101
- ``parent`` -- a Laurent series ring
98102
99103
- ``f`` -- a power series (or something can be coerced
100-
to one); note that ``f`` does *not* have to be a unit.
101-
This can be accessed through :meth:`valuation_zero_part`.
104+
to one); note that ``f`` does *not* have to be a unit
102105
103-
- ``n`` -- (default: 0) integer. This can be accessed
104-
through :meth:`valuation`.
106+
- ``n`` -- (default: 0) integer
105107
"""
106108
def __init__(self, parent, f, n=0):
107109
r"""
@@ -1303,7 +1305,7 @@ cdef class LaurentSeries(AlgebraElement):
13031305
sage: g.valuation()
13041306
0
13051307
1306-
Note that the valuation of an element undistinguishable from
1308+
Note that the valuation of an element indistinguishable from
13071309
zero is infinite::
13081310
13091311
sage: h = f - f; h

0 commit comments

Comments
 (0)