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

Commit

Permalink
Fix wrong NOTE block.
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Scrimshaw committed Dec 27, 2013
1 parent fcf6ad2 commit f338b7f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/sage/rings/padics/FM_template.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -594,20 +594,20 @@ cdef class FMElement(pAdicTemplateElement):
OUTPUT:
The list of coefficients of this element
The list of coefficients of this element.
.. NOTES::
.. NOTE::
- Returns a list `[a_0, a_1, \ldots, a_n]` so that each `a_i`
is an integer and `\sum_{i = 0}^n a_i * p^i` is equal to
this element modulo the precision cap.
- Returns a list `[a_0, a_1, \ldots, a_n]` so that each `a_i`
is an integer and `\sum_{i = 0}^n a_i \cdot p^i` is equal to
this element modulo the precision cap.
- If ``lift_mode`` is ``'simple'``, `0 \le a_i < p`.
- If ``lift_mode`` is ``'simple'``, `0 \leq a_i < p`.
- If ``lift_mode`` is ``'smallest'``, `-p/2 < a_i \le p/2`.
- If ``lift_mode`` is ``'smallest'``, `-p/2 < a_i \leq p/2`.
- If ``lift_mode`` is ``'teichmuller'``, `a_i^q = a_i`, modulo
the precision cap.
- If ``lift_mode`` is ``'teichmuller'``, `a_i^q = a_i`, modulo
the precision cap.
EXAMPLES::
Expand Down

0 comments on commit f338b7f

Please sign in to comment.