hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit e03eb90a366159ed9ef9888246de87f283508866
parent c915d0d3252007d61b680a388dcbe6b035d0adc8
Author: Cameron Moore <moorereason@gmail.com>
Date:   Tue, 28 Aug 2018 15:44:42 -0500

hugolib: Fix godoc comment

Diffstat:
Mhugolib/filesystems/basefs.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hugolib/filesystems/basefs.go b/hugolib/filesystems/basefs.go
@@ -183,7 +183,7 @@ func (s SourceFilesystems) IsData(filename string) bool {
 	return s.Data.Contains(filename)
 }
 
-// IsAsset returns true if the given filename is a member of the data filesystem.
+// IsAsset returns true if the given filename is a member of the asset filesystem.
 func (s SourceFilesystems) IsAsset(filename string) bool {
 	return s.Assets.Contains(filename)
 }