Skip to content

Commit a6b3c65

Browse files
author
Matthias Koeppe
committed
src/sage/structure/element.pyx: Fix placement of remaining # optional tags
1 parent 6efb63e commit a6b3c65

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/sage/structure/element.pyx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2317,7 +2317,8 @@ cdef class ElementWithCachedMethod(Element):
23172317
23182318
EXAMPLES::
23192319
2320-
sage: cython(''' # optional - sage.misc.cython
2320+
sage: cython( # optional - sage.misc.cython
2321+
....: '''
23212322
....: from sage.structure.element cimport ElementWithCachedMethod
23222323
....: cdef class MyElement(ElementWithCachedMethod):
23232324
....: cdef public object x
@@ -4124,7 +4125,8 @@ cdef class EuclideanDomainElement(PrincipalIdealDomainElement):
41244125
41254126
EXAMPLES::
41264127
4127-
sage: cython(''' # optional - sage.misc.cython
4128+
sage: cython( # optional - sage.misc.cython
4129+
....: '''
41284130
....: from sage.structure.element cimport EuclideanDomainElement
41294131
....: cdef class MyElt(EuclideanDomainElement):
41304132
....: def quo_rem(self, other):
@@ -4154,7 +4156,8 @@ cdef class EuclideanDomainElement(PrincipalIdealDomainElement):
41544156
41554157
::
41564158
4157-
sage: cython(''' # optional - sage.misc.cython
4159+
sage: cython( # optional - sage.misc.cython
4160+
....: '''
41584161
....: from sage.structure.element cimport EuclideanDomainElement
41594162
....: cdef class MyElt(EuclideanDomainElement):
41604163
....: def quo_rem(self, other):

0 commit comments

Comments
 (0)