From 25af02f21a3eb94e9a7d72cc5c0ab0b3829b1847 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 10 Sep 2021 08:52:54 -0700 Subject: [PATCH] positive -> nonnegative (#2493) --- doc/syntax.rst | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/syntax.rst b/doc/syntax.rst index 4eff1d4f..47c3f893 100644 --- a/doc/syntax.rst +++ b/doc/syntax.rst @@ -112,18 +112,18 @@ meaning in this case. The *sign* option is only valid for number types, and can be one of the following: -+---------+----------------------------------------------------------+ -| Option | Meaning | -+=========+==========================================================+ -| ``'+'`` | indicates that a sign should be used for both | -| | positive as well as negative numbers. | -+---------+----------------------------------------------------------+ -| ``'-'`` | indicates that a sign should be used only for negative | -| | numbers (this is the default behavior). | -+---------+----------------------------------------------------------+ -| space | indicates that a leading space should be used on | -| | positive numbers, and a minus sign on negative numbers. | -+---------+----------------------------------------------------------+ ++---------+------------------------------------------------------------+ +| Option | Meaning | ++=========+============================================================+ +| ``'+'`` | indicates that a sign should be used for both | +| | nonnegative as well as negative numbers. | ++---------+------------------------------------------------------------+ +| ``'-'`` | indicates that a sign should be used only for negative | +| | numbers (this is the default behavior). | ++---------+------------------------------------------------------------+ +| space | indicates that a leading space should be used on | +| | nonnegative numbers, and a minus sign on negative numbers. | ++---------+------------------------------------------------------------+ The ``'#'`` option causes the "alternate form" to be used for the conversion. The alternate form is defined differently for different