aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/inline
diff options
context:
space:
mode:
authorezz-no <115773618+ezz-no@users.noreply.github.com>2022-10-17 11:28:52 +0000
committerGopher Robot <gobot@golang.org>2022-10-17 18:34:19 +0000
commitd5ba1d8d6fe1d36294fa639f2d4936b331a543ea (patch)
tree2364c36bc4e513e4a170e60d5b2f27a146398c0b /src/cmd/compile/internal/inline
parent3e100a22e57106021df57ff95a0a1ae6ddab2e39 (diff)
downloadgo-d5ba1d8d6fe1d36294fa639f2d4936b331a543ea.tar.xz
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 <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Keith Randall <khr@golang.org> Auto-Submit: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/inline')
-rw-r--r--src/cmd/compile/internal/inline/inl.go2
1 files changed, 1 insertions, 1 deletions
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.