Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 14878d5

Browse files
committed
28239: fix according to review
1 parent 9a35541 commit 14878d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sage/rings/laurent_series_ring_element.pyx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ cdef class LaurentSeries(AlgebraElement):
746746
747747
INPUT:
748748
749-
- ``prec`` -- the precision of the series as an integer.
749+
- ``prec`` -- the precision of the series as an integer
750750
751751
EXAMPLES::
752752
@@ -762,6 +762,8 @@ cdef class LaurentSeries(AlgebraElement):
762762
763763
sage: (t^(-2)).add_bigoh(-1)
764764
t^-2 + O(t^-1)
765+
sage: (t^(-2)).add_bigoh(-2)
766+
O(t^-2)
765767
sage: (t^(-2)).add_bigoh(-3)
766768
O(t^-3)
767769
"""

0 commit comments

Comments
 (0)