Skip to content

Commit 6387a56

Browse files
cuishuangFiloSottile
authored andcommitted
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 <imcusg@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
1 parent c901e5e commit 6387a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalar.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (s *Scalar) Set(x *Scalar) *Scalar {
104104
// If x is not of the right length, SetUniformBytes returns nil and an error,
105105
// and the receiver is unchanged.
106106
//
107-
// SetUniformBytes can be used to set s to an uniformly distributed value given
107+
// SetUniformBytes can be used to set s to a uniformly distributed value given
108108
// 64 uniformly distributed random bytes.
109109
func (s *Scalar) SetUniformBytes(x []byte) (*Scalar, error) {
110110
if len(x) != 64 {

0 commit comments

Comments
 (0)