Add "n" to integer formatting types

This commit is contained in:
Victor Zverovich 2016-07-26 07:36:35 -07:00
parent d5893c9a13
commit ed30108918

View File

@ -81,7 +81,7 @@ The general form of a *standard format specifier* is:
width: `integer` | "{" `arg_id` "}"
precision: `integer` | "{" `arg_id` "}"
type: `int_type` | "c" | "e" | "E" | "f" | "F" | "g" | "G" | "p" | "s"
int_type: "b" | "B" | "d" | "o" | "x" | "X"
int_type: "b" | "B" | "d" | "n" | "o" | "x" | "X"
The *fill* character can be any character other than '{' or '}'. The presence
of a fill character is signaled by the character following it, which must be