File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1111//
1212// p := message.NewPrinter(language.English)
1313//
14- // p.Printf("%v bottles of beer on the wall.", number.Decimal(1234))
14+ // p.Printf("%v bottles of beer on the wall.\n ", number.Decimal(1234))
1515// // Prints: 1,234 bottles of beer on the wall.
1616//
17- // p.Printf("%v of gophers lose too much fur", number.Percent(0.12))
17+ // p.Printf("%v of gophers lose too much fur.\n ", number.Percent(0.12))
1818// // Prints: 12% of gophers lose too much fur.
1919//
20- // p := message.NewPrinter(language.Dutch)
21- //
22- // p.Printf("There are %v bikes per household.", number.Decimal(1.2))
23- // // Prints: Er zijn 1,2 fietsen per huishouden.
20+ // p = message.NewPrinter(language.Dutch)
21+ // p.Printf("There are %v bikes per household.\n", number.Decimal(1.2))
22+ // // Prints: There are 1,2 bikes per household.
2423//
2524// The width and scale specified in the formatting directives override the
2625// configuration of the formatter.
You can’t perform that action at this time.
0 commit comments