Browse Source

Fix for #630

Details can be found in issue #630
Tevin Jeffrey 9 years ago
parent
commit
c8b35d3445
1 changed files with 1 additions and 1 deletions
  1. 1 1
      errors.go

+ 1 - 1
errors.go

@@ -72,7 +72,7 @@ func (msg *Error) MarshalJSON() ([]byte, error) {
 }
 
 // Implements the error interface
-func (msg *Error) Error() string {
+func (msg Error) Error() string {
 	return msg.Err.Error()
 }