Correct typo in toFormat example

This commit is contained in:
Michael Mclaughlin 2017-01-18 11:50:48 +00:00
parent 46ed093a78
commit 8946411793
1 changed files with 4 additions and 4 deletions

View File

@ -1520,10 +1520,10 @@ x.toFormat() // '123 456 789.12345 6789'
BigNumber.config({
FORMAT: {
decimalSeparator = ',',
groupSeparator = '.',
groupSize = 3,
secondaryGroupSize = 2
decimalSeparator: ',',
groupSeparator: '.',
groupSize: 3,
secondaryGroupSize: 2
}
})