Skip to content

Commit 57b3142

Browse files
author
Release Manager
committed
gh-39623: Fix spacing for documentation Partially discussed in #39555. Meanwhile I find a few more. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #39623 Reported by: user202729 Reviewer(s): Frédéric Chapoton
2 parents f922dfc + 9017f78 commit 57b3142

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/sage/combinat/dyck_word.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def set_latex_options(self, D):
368368
- ``diagonal`` -- boolean (default: ``False``); value to draw the
369369
diagonal or not
370370
371-
- ``line width`` -- (default: 2*``tikz_scale``) value representing the
371+
- ``line width`` -- (default: ``2*tikz_scale``) value representing the
372372
line width
373373
374374
- ``color`` -- (default: black) the line color
@@ -676,7 +676,7 @@ def pretty_print(self, type=None, labelling=None, underpath=True):
676676
- ``labelling`` -- (if type is "N-E") a list of labels assigned to
677677
the up steps in ``self``
678678
679-
- ``underpath`` -- (if type is "N-E", default:``True``) if ``True``,
679+
- ``underpath`` -- (if type is "N-E", default: ``True``) if ``True``,
680680
the labelling is shown under the path; otherwise, it is shown to
681681
the right of the path
682682

src/sage/combinat/posets/posets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3462,7 +3462,7 @@ def is_EL_labelling(self, f, return_raising_chains=False):
34623462
``self`` such that ``b`` covers ``a`` and returning elements
34633463
in a totally ordered set.
34643464
3465-
- ``return_raising_chains`` (optional; default:``False``) if
3465+
- ``return_raising_chains`` (optional; default: ``False``) if
34663466
``True``, returns the set of all raising chains in ``self``,
34673467
if possible.
34683468

src/sage/dynamics/arithmetic_dynamics/projective_ds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6850,7 +6850,7 @@ def Lattes_to_curve(self, return_conjugation=False, check_lattes=False):
68506850
``return_conjugation`` -- (default: ``False``) if ``True``, then
68516851
return the conjugation that moves self to a map that comes from a
68526852
Short Weierstrass Model Elliptic curve
6853-
``check_lattes``.-.(default:.``False``) if ``True``, then will ValueError if not Lattes
6853+
``check_lattes`` -- (default: ``False``) if ``True``, then will ValueError if not Lattes
68546854
68556855
OUTPUT: a Short Weierstrass Model Elliptic curve which is isogenous to
68566856
the Elliptic curve of 'self',

src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def is_ultra_parallel(self, other):
539539
def is_parallel(self, other):
540540
r"""
541541
Return ``True`` if the two given hyperbolic geodesics are either
542-
ultra parallel or asymptotically parallel and``False`` otherwise.
542+
ultra parallel or asymptotically parallel and ``False`` otherwise.
543543
544544
INPUT:
545545

src/sage/graphs/strongly_regular_db.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2784,7 +2784,7 @@ def strongly_regular_graph(int v, int k, int l, int mu=-1, bint existence=False,
27842784
- ``v``, ``k``, ``l``, ``mu`` -- ``integers`` -- note that ``mu``, if unspecified, is
27852785
automatically determined from ``v``, ``k``, ``l``
27862786

2787-
- ``existence`` -- boolean;``False``; instead of building the graph,
2787+
- ``existence`` -- boolean (default: ``False``); instead of building the graph,
27882788
return:
27892789

27902790
- ``True`` -- meaning that a `(v,k,\lambda,\mu)`-strongly regular graph

src/sage/matrix/matrix_modn_dense_template.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1764,7 +1764,7 @@ cdef class Matrix_modn_dense_template(Matrix_dense):
17641764
``LinBox::FFPACK`` implementation, since the latter also
17651765
computes the transformation matrix (which we
17661766
ignore). However, ``efd=True`` uses more memory than FFLAS
1767-
directly (default=``True``)
1767+
directly (default: ``True``)
17681768
17691769
EXAMPLES::
17701770

src/sage/rings/polynomial/multi_polynomial_libsingular.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6116,7 +6116,7 @@ cdef class MPolynomial_libsingular(MPolynomial_libsingular_base):
61166116
and only if the remainder involves only the new variables
61176117
`z_i`.
61186118
6119-
- ``certificate`` -- boolean (default: ``False``) or string; if``True``
6119+
- ``certificate`` -- boolean (default: ``False``) or string; if ``True``
61206120
and ``algorithm='groebner'``, return the polynomial generated by
61216121
the algorithm if such a polynomial exists, otherwise return ``None``;
61226122
if a nonempty string, then this is used as the name of the variables

0 commit comments

Comments
 (0)