aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/golang.org/x/text/message/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/text/message/doc.go')
-rw-r--r--vendor/golang.org/x/text/message/doc.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/golang.org/x/text/message/doc.go b/vendor/golang.org/x/text/message/doc.go
index 89c1592..2f7effd 100644
--- a/vendor/golang.org/x/text/message/doc.go
+++ b/vendor/golang.org/x/text/message/doc.go
@@ -11,15 +11,15 @@
// A format string can be localized by replacing any of the print functions of
// fmt with an equivalent call to a Printer.
//
-// p := message.NewPrinter(language.English)
+// p := message.NewPrinter(message.MatchLanguage("en"))
// p.Println(123456.78) // Prints 123,456.78
//
// p.Printf("%d ducks in a row", 4331) // Prints 4,331 ducks in a row
//
-// p := message.NewPrinter(language.Dutch)
+// p := message.NewPrinter(message.MatchLanguage("nl"))
// p.Println("Hoogte: %f meter", 1244.9) // Prints Hoogte: 1.244,9 meter
//
-// p := message.NewPrinter(language.Bengali)
+// p := message.NewPrinter(message.MatchLanguage("bn"))
// p.Println(123456.78) // Prints ১,২৩,৪৫৬.৭৮
//
// Printer currently supports numbers and specialized types for which packages