From 20cbeb9c779f96c571930f77909ad7bf8b595990 Mon Sep 17 00:00:00 2001 From: Ben Kraft Date: Thu, 16 Sep 2021 09:08:48 -0700 Subject: [PATCH] Typo fix --- generate/names.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate/names.go b/generate/names.go index 29b7bf2c..e9bc5003 100644 --- a/generate/names.go +++ b/generate/names.go @@ -31,7 +31,7 @@ package generate // different types. // // One subtlety in the above description is: is the "MyType" the interface or -// the impelmentation? When it's a suffix, the answer is both: we generate +// the implementation? When it's a suffix, the answer is both: we generate // both MyFieldMyInterface and MyFieldMyImplementation, and the latter, in Go, // implements the former. (See docs/DESIGN.md for more.) But as an infix, we // use the type on which the field is requested. Concretely, the following