aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorstrandmon <islandberry@ymail.com>2014-01-26 08:37:38 -0800
committerstrandmon <islandberry@ymail.com>2014-01-26 08:37:38 -0800
commitcf4ff8e92faf6311a73ce3d4a0fcd68ea11dc14b (patch)
treec043b8ce76d133ebb57b00577c2bd8184e21577b /README.md
parentcleaner (diff)
downloadsleepy-cf4ff8e92faf6311a73ce3d4a0fcd68ea11dc14b.tar.gz
sleepy-cf4ff8e92faf6311a73ce3d4a0fcd68ea11dc14b.tar.bz2
sleepy-cf4ff8e92faf6311a73ce3d4a0fcd68ea11dc14b.zip
Update path in README to match Go convention.
Read http://golang.org/doc/code.html if you don't know why I made this change.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c3fb65b..581fdda 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ package main
import (
"net/url"
- "sleepy"
+ "github.com/dougblack/sleepy"
)
type Item struct {
bgstack15