]> Cypherpunks repositories - gostls13.git/commitdiff
reflect: update comment (there is no BoolType)
authorRuss Cox <rsc@golang.org>
Thu, 14 May 2009 01:03:49 +0000 (18:03 -0700)
committerRuss Cox <rsc@golang.org>
Thu, 14 May 2009 01:03:49 +0000 (18:03 -0700)
R=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=28756
CL=28784

src/lib/reflect/type.go

index 917dc28ff31afa33b5159305496bb4b0b4ff9a03..083968634d16ed4474eac9618418f1da45e0fed9 100644 (file)
@@ -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.