Fix typo.

This commit is contained in:
Raymond Hettinger 2009-03-12 16:17:07 +00:00
parent 53b241525b
commit 8b795b1957
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ Examples::
format(1234, "8.1f") --> ' 1234.0'
format(1234, "8,1f") --> ' 1234,0'
format(1234, "8T.,1f") --> ' 1.234,0'
format(1234, "8T .f") --> ' 1 234,0'
format(1234, "8T ,f") --> ' 1 234,0'
format(1234, "8d") --> ' 1234'
format(1234, "8T,d") --> ' 1,234'