diff --git a/asset/asset.go b/asset/asset.go index a4d5a1b..8a31e43 100644 --- a/asset/asset.go +++ b/asset/asset.go @@ -1,3 +1,7 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Package asset provides access to application-bundled assets. // // On Android, assets are accessed via android.content.res.AssetManager. @@ -9,7 +13,7 @@ // Resources can be loaded using the same relative paths. // // For consistency when debugging on a desktop, assets are read from a -// directoy named assets under the current working directory. +// directory named assets under the current working directory. package asset import "io" diff --git a/asset/asset_darwin_armx.go b/asset/asset_darwin_armx.go index 650fd6e..6c9eaec 100644 --- a/asset/asset_darwin_armx.go +++ b/asset/asset_darwin_armx.go @@ -21,5 +21,4 @@ func openAsset(name string) (File, error) { return nil, err } return f, nil - }