From 1f308a3cea1a218e78ce1c246ab4e50ba955914d Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Mon, 24 May 2021 16:23:46 +0200 Subject: [PATCH] Update integer presentation types documentation. Documents that the 'c' type is a valid type for integer types. Since boolean uses the same types as integer its documentation is automatically updated. --- doc/syntax.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/syntax.rst b/doc/syntax.rst index d6840861..a1d5d85f 100644 --- a/doc/syntax.rst +++ b/doc/syntax.rst @@ -203,6 +203,8 @@ The available integer presentation types are: | | ``'#'`` option with this type adds the prefix ``"0B"`` | | | to the output value. | +---------+----------------------------------------------------------+ +| ``'c'`` | Character format. Outputs the number as a character. | ++---------+----------------------------------------------------------+ | ``'d'`` | Decimal integer. Outputs the number in base 10. | +---------+----------------------------------------------------------+ | ``'o'`` | Octal format. Outputs the number in base 8. |