From c5695691c1978c159a5100ce73ab5272f5f26736 Mon Sep 17 00:00:00 2001 From: Gregory Czajkowski Date: Tue, 12 Nov 2013 13:25:56 -0800 Subject: [PATCH] add support for bin formatter --- doc/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index 744aedc4..fe6afcab 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -236,10 +236,10 @@ The available integer presentation types are: | | upper-case letters for the digits above 9. | +---------+----------------------------------------------------------+ | ``'b'`` | Binary format. Outputs the number in base 2, using | - | | a upper-case 0B if a prefix is requested. | + | | a lower-case 0b if a prefix is requested. | +---------+----------------------------------------------------------+ | ``'B'`` | Binary format. Outputs the number in base 2, using | - | | a lower-case 0b if a prefix is requested. | + | | a upper-case 0B if a prefix is requested. | +---------+----------------------------------------------------------+ | none | The same as ``'d'``. | +---------+----------------------------------------------------------+