aboutsummaryrefslogtreecommitdiff
path: root/error.go
diff options
context:
space:
mode:
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