diff options
author | Doug Black <dblack@twilio.com> | 2014-01-27 11:14:08 -0500 |
---|---|---|
committer | Doug Black <dblack@twilio.com> | 2014-01-27 11:14:08 -0500 |
commit | 1f1580b678ff0b859e0b08e11e10e29f49cd4680 (patch) | |
tree | 637540c47991c081d4534559def2a4f1f0ea18fa /error.go | |
parent | update README (diff) | |
download | sleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.tar.gz sleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.tar.bz2 sleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.zip |
export 'method supported' interfaces
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 } |