From afb9336c4530b4b18f37130eab53f245f7d6821e Mon Sep 17 00:00:00 2001 From: Jakub Kaczmarzyk Date: Thu, 30 Apr 2020 17:15:02 +0000 Subject: [PATCH] number: fix typo Change-Id: Iee2b9cd52e9bc147ae595cb4d50f5096afaa3492 GitHub-Last-Rev: 922e349cdc4378ba52a15b395bf614b71246a7a3 GitHub-Pull-Request: golang/text#14 Reviewed-on: https://go-review.googlesource.com/c/text/+/231121 Reviewed-by: Brad Fitzpatrick --- number/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/number/format.go b/number/format.go index 1c3d41be0..f2bdfdc61 100644 --- a/number/format.go +++ b/number/format.go @@ -14,7 +14,7 @@ import ( "golang.org/x/text/language" ) -// A FormatFunc formates a number. +// A FormatFunc formats a number. type FormatFunc func(x interface{}, opts ...Option) Formatter // NewFormat creates a FormatFunc based on another FormatFunc and new options.