Skip to content

Commit 8fa8cbc

Browse files
committed
fixes in the newly added documentation
1 parent 058418d commit 8fa8cbc

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

src/sage/algebras/exterior_algebra_groebner.pyx

+2
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,8 @@ cdef class GroebnerStrategy:
438438
"""
439439
Convert the computed Gröbner basis to a reduced Gröbner basis.
440440
441+
EXAMPLES::
442+
441443
sage: E.<x,y,z> = ExteriorAlgebra(QQ)
442444
sage: I = E.ideal([x+y*z])
443445
sage: I.groebner_basis(reduced=False)

src/sage/graphs/graph_decompositions/fast_digraph.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ cdef class FastDigraph:
9090

9191
def print_adjacency_matrix(self):
9292
r"""
93-
Displays the adjacency matrix of ``self``.
93+
Display the adjacency matrix of ``self``.
9494
9595
EXAMPLES::
9696

src/sage/matroids/union_matroid.pyx

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Union of matroids
3+
"""
14
from sage.matroids.matroid cimport Matroid
25

36
cdef class MatroidUnion(Matroid):

src/sage/modular/hypergeometric_misc.pyx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
2-
Some utility routines for the hypergeometric motives package that benefit
3-
significantly from Cythonization.
2+
Utility routines for hypergeometric motives
3+
4+
These are functions that benefit significantly from Cythonization.
45
"""
56
from cpython cimport array
67
from cysignals.signals cimport sig_check

src/sage/modular/modform/l_series_gross_zagier.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Gross-Zagier L-series
3+
"""
14
from sage.rings.integer import Integer
25
from sage.structure.sage_object import SageObject
36
from sage.lfunctions.dokchitser import Dokchitser

src/sage/modular/modform/l_series_gross_zagier_coeffs.pyx

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Utilities for Gross-Zagier L-series
3+
"""
14
from cysignals.memory cimport check_allocarray, check_calloc, sig_free
25
from cysignals.signals cimport sig_check, sig_on, sig_off
36

@@ -14,7 +17,7 @@ from libc.string cimport memcpy
1417

1518
cpdef to_series(L, var):
1619
"""
17-
Create a power series element out of a list ``L`` in the variable`` var``.
20+
Create a power series element out of a list ``L`` in the variable ``var``.
1821
1922
EXAMPLES::
2023
@@ -42,7 +45,7 @@ def bqf_theta_series(Q, long bound, var=None):
4245
4346
.. MATH::
4447
45-
\sum_{(x,y) \in \Z^2} q^{f(x,y)} = \sum_{n=-\infty}^{\infty} r(n)q^n
48+
\sum_{(x,y) \in \ZZ^2} q^{f(x,y)} = \sum_{n=-\infty}^{\infty} r(n)q^n
4649
4750
where `r(n)` give the number of way `n` is represented by `f`.
4851

0 commit comments

Comments
 (0)