aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgulyasm <mgulyas86@gmail.com>2017-01-07 23:37:57 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2017-01-07 23:55:24 +0000
commit3156736189dbc4e4a4a955c78334590819c9a914 (patch)
treeb6c58fe3766024d74ae24f18bfbc6c3734560156
parent1ede11d13a2a4ed63e9a6cf8b6039225749fa6ea (diff)
downloadgo-3156736189dbc4e4a4a955c78334590819c9a914.tar.gz
go-3156736189dbc4e4a4a955c78334590819c9a914.zip
go/types: fix typo
Fixes #18562 Change-Id: Ic195a8606f09876e2667e4ef720b84a07d316f4a Reviewed-on: https://go-review.googlesource.com/34939 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/go/types/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/types/api.go b/src/go/types/api.go
index 44949895a7..5b911cb96c 100644
--- a/src/go/types/api.go
+++ b/src/go/types/api.go
@@ -5,7 +5,7 @@
// Package types declares the data types and implements
// the algorithms for type-checking of Go packages. Use
// Config.Check to invoke the type checker for a package.
-// Alternatively, create a new type checked with NewChecker
+// Alternatively, create a new type checker with NewChecker
// and invoke it incrementally by calling Checker.Files.
//
// Type-checking consists of several interdependent phases: