error message fixed

This commit is contained in:
Lunny Xiao 2015-09-09 09:24:26 +08:00
parent 8e56c9684c
commit 5d275bdbcd
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import "errors"
var ( var (
ErrNoMapPointer = errors.New("mp should be a map's pointer") ErrNoMapPointer = errors.New("mp should be a map's pointer")
ErrNoStructPointer = errors.New("mp should be a map's pointer") ErrNoStructPointer = errors.New("mp should be a struct's pointer")
//ErrNotExist = errors.New("Not exist") //ErrNotExist = errors.New("Not exist")
//ErrIgnore = errors.New("Ignore") //ErrIgnore = errors.New("Ignore")
) )