Merge pull request #54 from arschles/fix-readme

fixing the readme to indicate err return
pull/4/head
Jim Teeuwen 2014-11-15 01:21:54 +01:00
commit 1796683e4d
1 changed files with 3 additions and 3 deletions

View File

@ -56,11 +56,11 @@ To ignore files, pass in regexes using -ignore, for example:
To access asset data, we use the `Asset(string) []byte` function which
is included in the generated output.
data := Asset("pub/style/foo.css")
if len(data) == 0 {
data, err := Asset("pub/style/foo.css")
if err != nil {
// Asset was not found.
}
// use asset data