Skip to content

Commit 851126b

Browse files
committed
pr #36030: fix docstring markup for quoted strings
1 parent 3f0a49e commit 851126b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sage/rings/polynomial/multi_polynomial_libsingular.pyx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5766,19 +5766,19 @@ cdef class MPolynomial_libsingular(MPolynomial_libsingular_base):
57665766
57675767
- ``J`` -- list of elements of the parent polynomial ring
57685768
5769-
- ``algorithm`` -- can be "algebra_containment" (the default),
5770-
"inSubring", or "groebner".
5769+
- ``algorithm`` -- can be ``"algebra_containment"`` (the default),
5770+
``"inSubring"``, or ``"groebner"``.
57715771
5772-
- "algebra_containment" (default): use Singular's
5772+
- ``"algebra_containment"``: use Singular's
57735773
``algebra_containment`` function,
57745774
https://www.singular.uni-kl.de/Manual/4-2-1/sing_1247.htm#SEC1328. The
57755775
Singular documentation suggests that this is frequently
57765776
faster than the next option.
57775777
5778-
- "inSubring": use Singular's ``inSubring`` function,
5778+
- ``"inSubring"``: use Singular's ``inSubring`` function,
57795779
https://www.singular.uni-kl.de/Manual/4-2-0/sing_1240.htm#SEC1321.
57805780
5781-
- "groebner": use the algorithm described in Singular's
5781+
- ``"groebner"``: use the algorithm described in Singular's
57825782
documentation, but within Sage: if the subalgebra
57835783
generators are `y_1`, ..., `y_m`, then create a new
57845784
polynomial algebra with the old generators along with new

0 commit comments

Comments
 (0)