diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-05-12 21:29:32 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-05-12 21:29:32 (GMT) |
commit | 38b86b4cf555e7054fb0c51cdbb1b76fed0ccf7c (patch) | |
tree | e551e699f0db5385101617823eb6168d4d5f2232 | |
parent | 5fddf866d8cbd03f400cce3958a9ca10b9095332 (diff) | |
download | cpython-38b86b4cf555e7054fb0c51cdbb1b76fed0ccf7c.zip cpython-38b86b4cf555e7054fb0c51cdbb1b76fed0ccf7c.tar.gz cpython-38b86b4cf555e7054fb0c51cdbb1b76fed0ccf7c.tar.bz2 |
correctly define what 'fill' could be; thanks to Leland Hulbert from docs@
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 1f8e230..fc0bd24 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -292,7 +292,7 @@ The general form of a *standard format specifier* is: .. productionlist:: sf format_spec: [[`fill`]`align`][`sign`][#][0][`width`][,][.`precision`][`type`] - fill: <a character other than '}'> + fill: <a character other than '{' or '}'> align: "<" | ">" | "=" | "^" sign: "+" | "-" | " " width: `integer` |