Skip to content
This repository has been archived by the owner on May 8, 2019. It is now read-only.

Commit

Permalink
fixed comments for golint
Browse files Browse the repository at this point in the history
  • Loading branch information
dchenk committed Apr 18, 2018
1 parent e5401c6 commit b40f8e6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions msgp/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ const smallint = (32 << (^uint(0) >> 63)) == 32
type Type byte

const (
InvalidType Type = iota // InvalidType is the zero value of Type (not used).
// InvalidType is the zero value of Type (not used).
InvalidType Type = iota

// MessagePack built-in types
// StrType and the following types are built into the MessagePack standard.
StrType
BinType
MapType
Expand All @@ -31,7 +32,7 @@ const (
NilType
ExtensionType

// Types provided by extensions
// Complex64Type and the following types represent extensions.
Complex64Type
Complex128Type
TimeType
Expand Down

0 comments on commit b40f8e6

Please sign in to comment.