Skip to content

Commit fb1648e

Browse files
author
Release Manager
committed
gh-35974: `src/sage/schemes/projective/proj_bdd_height.py`: Fix markup <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> <!-- Why is this change required? What problem does it solve? --> Fixes the linter failure `./sage -tox -e rst -- src/sage/schemes/projective/proj_bdd_height.py ` <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #35974 Reported by: Matthias Köppe Reviewer(s): Jing Guo
2 parents 2f604dd + 3766eb5 commit fb1648e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/schemes/projective/proj_bdd_height.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def ZZ_points_of_bounded_height(PS, dim, bound):
5252
5353
- an iterator of points of bounded height
5454
55-
EXAMPLES:
55+
EXAMPLES::
5656
5757
sage: from sage.schemes.projective.proj_bdd_height import ZZ_points_of_bounded_height
5858
sage: PS = ProjectiveSpace(ZZ, 1)
@@ -110,7 +110,7 @@ def QQ_points_of_bounded_height(PS, dim, bound, normalize=False):
110110
111111
- an iterator of points of bounded height
112112
113-
EXAMPLES:
113+
EXAMPLES::
114114
115115
sage: from sage.schemes.projective.proj_bdd_height import QQ_points_of_bounded_height
116116
sage: PS = ProjectiveSpace(QQ, 1)
@@ -251,7 +251,7 @@ def points_of_bounded_height(PS, K, dim, bound, prec=53):
251251
252252
- an iterator of points of bounded height
253253
254-
EXAMPLES:
254+
EXAMPLES::
255255
256256
sage: from sage.schemes.projective.proj_bdd_height import points_of_bounded_height
257257
sage: x = polygen(ZZ, 'x')

0 commit comments

Comments
 (0)