Fixed comments for MarshalJSON() and UnmarshalJSON() in template.

This commit is contained in:
Daved 2015-04-07 10:40:45 -07:00
parent 827bbf1143
commit b02f877c48
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ func init() {
}
}
// MarshalJSON returns *r as the JSON encoding of r.
// MarshalJSON is generated; DO NOT EDIT
func (r {{$typename}}) MarshalJSON() ([]byte, error) {
if s, ok := interface{}(r).(fmt.Stringer); ok {
return json.Marshal(s.String())
@ -54,7 +54,7 @@ func (r {{$typename}}) MarshalJSON() ([]byte, error) {
return json.Marshal(s)
}
// UnmarshalJSON sets *r to a copy of data.
// UnmarshalJSON is generated; DO NOT EDIT
func (r *{{$typename}}) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {