Skip to content

Commit

Permalink
Some omitted edits
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Jun 2, 2024
1 parent 3dde717 commit 9873f45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/doc/en/developer/coding_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -657,12 +657,12 @@ indentation:
INPUT:
- ``x`` -- integer (default: ``1``); the description of the
- ``x`` -- integer (default: `1`); the description of the
argument ``x`` goes here. If it contains multiple lines, all
the lines after the first need to begin at the same indentation
as the backtick.
- ``y`` -- integer (default: ``2``); the description of the
- ``y`` -- integer (default: `2`); the description of the
argument ``y``
OUTPUT: tuple; further description of the output
Expand All @@ -673,7 +673,7 @@ indentation:
sage: A = EuclideanSpace(2)
sage: A.point(2, 3)
(32, 3)
(2, 3)
We now ... ::
Expand All @@ -690,7 +690,7 @@ indentation:
.. NOTE::
This function uses :func:`pow` to determine the fifth
power of ``x``.
power of `x`.
...
Expand All @@ -700,7 +700,7 @@ indentation:
TESTS::
sage: A.point(42, 0) # Check for corner case y = 0
sage: A.point(42, 0) # check for corner case y = 0
...
"""
<body of the function>
Expand Down

0 comments on commit 9873f45

Please sign in to comment.