aboutsummaryrefslogtreecommitdiff
path: root/error.go
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-27 11:14:08 -0500
committerDoug Black <dblack@twilio.com>2014-01-27 11:14:08 -0500
commit1f1580b678ff0b859e0b08e11e10e29f49cd4680 (patch)
tree637540c47991c081d4534559def2a4f1f0ea18fa /error.go
parentupdate README (diff)
downloadsleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.tar.gz
sleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.tar.bz2
sleepy-1f1580b678ff0b859e0b08e11e10e29f49cd4680.zip
export 'method supported' interfaces
Diffstat (limited to 'error.go')
-rw-r--r--error.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/error.go b/error.go
index c52a483..dc129cb 100644
--- a/error.go
+++ b/error.go
@@ -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
}
bgstack15