diff options
Diffstat (limited to 'error.go')
-rw-r--r-- | error.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ package sleepy -type errorString struct { +type ErrorString struct { s string } -func (e *errorString) Error() string { +func (e *ErrorString) Error() string { return e.s } |