Explorar el Código

Fix for #630

Details can be found in issue #630
Tevin Jeffrey hace 9 años
padre
commit
c8b35d3445
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()
 }