From bf9006eeb65c94a4e492be29f530f511a3d6ffc1 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Fri, 19 Sep 2025 14:48:02 -0700 Subject: [PATCH] cmd/compile: fix doc word --- src/cmd/compile/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/README.md b/src/cmd/compile/README.md index 79d233615427c3..1089348030d78b 100644 --- a/src/cmd/compile/README.md +++ b/src/cmd/compile/README.md @@ -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.