diff options
| author | Russ Cox <rsc@golang.org> | 2009-05-13 18:03:49 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-05-13 18:03:49 -0700 |
| commit | 8f854174c77e769eb148b19954c6d4e48715e0ce (patch) | |
| tree | d7ce39d69d5270e6d3ffa73753de3e2e442b034e /src/lib/reflect | |
| parent | cc1d4b7e1b36f1b1d7d85f9f2bad54cf91653cf1 (diff) | |
| download | go-8f854174c77e769eb148b19954c6d4e48715e0ce.tar.xz | |
reflect: update comment (there is no BoolType)
R=r
DELTA=2 (0 added, 0 deleted, 2 changed)
OCL=28756
CL=28784
Diffstat (limited to 'src/lib/reflect')
| -rw-r--r-- | src/lib/reflect/type.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/reflect/type.go b/src/lib/reflect/type.go index 917dc28ff3..083968634d 100644 --- a/src/lib/reflect/type.go +++ b/src/lib/reflect/type.go @@ -95,8 +95,8 @@ var missingString = "$missing$" // syntactic name for undefined type names var dotDotDotString = "..." // Type is the generic interface to reflection types. Once its Kind is known, -// such as BoolKind, the Type can be narrowed to the appropriate, more -// specific interface, such as BoolType. Such narrowed types still implement +// such as ArrayKind, the Type can be narrowed to the appropriate, more +// specific interface, such as ArrayType. Such narrowed types still implement // the Type interface. type Type interface { // The kind of thing described: ArrayKind, BoolKind, etc. |
