]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: fix doc word
authorWill Faught <willfaught@users.noreply.github.com>
Fri, 19 Sep 2025 21:59:21 +0000 (21:59 +0000)
committerGopher Robot <gobot@golang.org>
Sat, 20 Sep 2025 00:06:23 +0000 (17:06 -0700)
"using" -> "uses"

Change-Id: I2bcefc6128dafd4fd05d7ce291b1afb28465a25c
GitHub-Last-Rev: bf9006eeb65c94a4e492be29f530f511a3d6ffc1
GitHub-Pull-Request: golang/go#75548
Reviewed-on: https://go-review.googlesource.com/c/go/+/705515
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
src/cmd/compile/README.md

index 79d233615427c37f5e342cc8b3dbdbabc806da3a..1089348030d78b1bef88a9c22d022a3855b5241c 100644 (file)
@@ -57,7 +57,7 @@ terms of these, so the next step after type checking is to convert the syntax
 and types2 representations to ir and types. This process is referred to as
 "noding."
 
-Noding using a process called Unified IR, which builds a node representation
+Noding uses a process called Unified IR, which builds a node representation
 using a serialized version of the typechecked code from step 2.
 Unified IR is also involved in import/export of packages and inlining.