fixing the readme to indicate err return

from a test that I wrote in https://github.com/arschles/go-bindata-test, it looks like go-bindata generates an Asset(...) function that returns an error when the file isn't found
pull/4/head
Aaron Schlesinger 2014-11-14 14:38:19 -08:00
parent 1743f47c01
commit 8f6e0a3425
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