From 6143698aa66a288b9fc00783f785aaf6916c2775 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 12 Dec 2012 15:49:17 -0800 Subject: [PATCH] Remove unnecessary quotes. --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index a5a8255c..9b333b52 100644 --- a/README.rst +++ b/README.rst @@ -83,11 +83,11 @@ The grammar for a replacement field is as follows: .. parsed-literal:: - _`replacement_field`: "{" `arg_index`_ [":" `format_spec`_] "}" + _`replacement_field`: "{" arg_index_ [":" format_spec_] "}" _`arg_index`: integer - _`format_spec`: ["+"]["0"][`width`_]["." `precision`_][`type`_] + _`format_spec`: ["+"]["0"][width_]["." precision_][type_] _`width`: integer - _`precision`: integer | "{" `arg_index`_ "}" + _`precision`: integer | "{" arg_index_ "}" _`type`: "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "o" | "p" | "s" | "x" | "X" Preceding the `width`_ field with ``0`` makes the padding to be placed