Updated to include the empty type ''. See Issue #5782.

This commit is contained in:
Eric Smith 2009-04-17 18:34:48 +00:00
parent 1afa68a26d
commit 2d14b54016
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ and decimal point::
format(1234.5, "08,.1f") --> '01,234.5'
The ',' option is defined as shown above for types 'd', 'e',
'f', 'g', 'E', 'G', '%' and 'F'. To allow future extensions, it is
'f', 'g', 'E', 'G', '%', 'F' and ''. To allow future extensions, it is
undefined for other types: binary, octal, hex, character,
etc.