Commit 8f854174 authored by Russ Cox's avatar Russ Cox

reflect: update comment (there is no BoolType)

R=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=28756
CL=28784
parent cc1d4b7e
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment