From 9873f45582bf4951fe5983d23eb0958c3a22d8e7 Mon Sep 17 00:00:00 2001 From: Kwankyu Lee Date: Sat, 1 Jun 2024 05:56:34 +0900 Subject: [PATCH] Some omitted edits --- src/doc/en/developer/coding_basics.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/doc/en/developer/coding_basics.rst b/src/doc/en/developer/coding_basics.rst index 140f24608f3..0f442aa6bf7 100644 --- a/src/doc/en/developer/coding_basics.rst +++ b/src/doc/en/developer/coding_basics.rst @@ -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 @@ -673,7 +673,7 @@ indentation: sage: A = EuclideanSpace(2) sage: A.point(2, 3) - (32, 3) + (2, 3) We now ... :: @@ -690,7 +690,7 @@ indentation: .. NOTE:: This function uses :func:`pow` to determine the fifth - power of ``x``. + power of `x`. ... @@ -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 ... """