From 50b2f56a4e0be20406577ca14ef681ea4d8aa8d3 Mon Sep 17 00:00:00 2001 From: Ben Kraft Date: Thu, 16 Sep 2021 09:11:00 -0700 Subject: [PATCH] =?UTF-8?q?[=F0=9F=94=A5AUDIT=F0=9F=94=A5]=20Typo=20fix=20?= =?UTF-8?q?(#100)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🖍 _This is an audit!_ 🖍 Auditors: StevenACoffman Author: benjaminjkraft Required Reviewers: Approved By: Checks: ✅ Test (1.17), ✅ Test (1.16), ✅ Test (1.15), ✅ Test (1.14), ✅ Lint, ✅ Test (1.17), ✅ Test (1.16), ✅ Test (1.15), ✅ Test (1.14), ✅ Lint Pull Request URL: https://github.com/Khan/genqlient/pull/100 --- 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