From: ezz-no <115773618+ezz-no@users.noreply.github.com> Date: Mon, 17 Oct 2022 11:28:52 +0000 (+0000) Subject: cmd/compile: fix a typo in comment X-Git-Tag: go1.20rc1~611 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d5ba1d8d6fe1d36294fa639f2d4936b331a543ea;p=gostls13.git cmd/compile: fix a typo in comment Change-Id: I9b18b29e14a47765dc09ac401989e0439fbf7d03 GitHub-Last-Rev: 7d9792ccb97f8e20bc5300cb4fa29a0c49d9934b GitHub-Pull-Request: golang/go#56267 Reviewed-on: https://go-review.googlesource.com/c/go/+/443296 Reviewed-by: Keith Randall Reviewed-by: Keith Randall Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Run-TryBot: Keith Randall Auto-Submit: Keith Randall --- diff --git a/src/cmd/compile/internal/inline/inl.go b/src/cmd/compile/internal/inline/inl.go index 949924517a..5e14a87dfa 100644 --- a/src/cmd/compile/internal/inline/inl.go +++ b/src/cmd/compile/internal/inline/inl.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // -// The inlining facility makes 2 passes: first caninl determines which +// The inlining facility makes 2 passes: first CanInline determines which // functions are suitable for inlining, and for those that are it // saves a copy of the body. Then InlineCalls walks each function body to // expand calls to inlinable functions.