Commit 77e02cef authored by Eric Myhre's avatar Eric Myhre

Type all the ReprKind consts correctly -.-

Signed-off-by: default avatarEric Myhre <hash@exultant.us>
parent 659e13d2
...@@ -10,14 +10,14 @@ package ipld ...@@ -10,14 +10,14 @@ package ipld
type ReprKind uint8 type ReprKind uint8
const ( const (
ReprKind_Invalid = 0 ReprKind_Invalid ReprKind = 0
ReprKind_Map = '{' ReprKind_Map ReprKind = '{'
ReprKind_List = '[' ReprKind_List ReprKind = '['
ReprKind_Null = '0' ReprKind_Null ReprKind = '0'
ReprKind_Bool = 'b' ReprKind_Bool ReprKind = 'b'
ReprKind_Int = 'i' ReprKind_Int ReprKind = 'i'
ReprKind_Float = 'f' ReprKind_Float ReprKind = 'f'
ReprKind_String = 's' ReprKind_String ReprKind = 's'
ReprKind_Bytes = 'x' ReprKind_Bytes ReprKind = 'x'
ReprKind_Link = '/' ReprKind_Link ReprKind = '/'
) )
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