From 6387a56aa63ba12266063ae61fc7736bb425a59f Mon Sep 17 00:00:00 2001 From: cui fliter Date: Fri, 31 Mar 2023 00:00:19 +0800 Subject: [PATCH] all: fix misuses of "a" vs "an" Fixes the misuse of "a" vs "an", according to English grammatical expectations and using https://www.a-or-an.com/ Change-Id: I53ac724070e3ff3d33c304483fe72c023c7cda47 Reviewed-on: https://go-review.googlesource.com/c/go/+/480536 Run-TryBot: shuang cui Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor Run-TryBot: Ian Lance Taylor Reviewed-by: Michael Knyszek --- scalar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scalar.go b/scalar.go index d34ecea..3fd1653 100644 --- a/scalar.go +++ b/scalar.go @@ -104,7 +104,7 @@ func (s *Scalar) Set(x *Scalar) *Scalar { // If x is not of the right length, SetUniformBytes returns nil and an error, // and the receiver is unchanged. // -// SetUniformBytes can be used to set s to an uniformly distributed value given +// SetUniformBytes can be used to set s to a uniformly distributed value given // 64 uniformly distributed random bytes. func (s *Scalar) SetUniformBytes(x []byte) (*Scalar, error) { if len(x) != 64 {