Skip to content

Commit c8b31c5

Browse files
committed
go/build: fix typo
Thanks Dmitri Shuralyov for pointing it out. Change-Id: If9c5ac0e56d601d327b2b682ee3548037439cb83 Reviewed-on: https://go-review.googlesource.com/9881 Reviewed-by: Josh Bleecher Snyder <[email protected]>
1 parent 2320b56 commit c8b31c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/go/build/build.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {
13281328
// build tag "linux" in that file. For Go 1.4 and beyond, we require this
13291329
// auto-tagging to apply only to files with a non-empty prefix, so
13301330
// "foo_linux.go" is tagged but "linux.go" is not. This allows new operating
1331-
// sytems, such as android, to arrive without breaking existing code with
1331+
// systems, such as android, to arrive without breaking existing code with
13321332
// innocuous source code in "android.go". The easiest fix: cut everything
13331333
// in the name before the initial _.
13341334
i := strings.Index(name, "_")

0 commit comments

Comments
 (0)