summaryrefslogtreecommitdiffstats
path: root/hugolib/filesystems
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2018-08-28 15:44:42 -0500
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-08-30 22:31:29 +0200
commite03eb90a366159ed9ef9888246de87f283508866 (patch)
treef36dd5a278651a46b6c5d9c4753b35d588f5cb7f /hugolib/filesystems
parentc915d0d3252007d61b680a388dcbe6b035d0adc8 (diff)
hugolib: Fix godoc comment
Diffstat (limited to 'hugolib/filesystems')
-rw-r--r--hugolib/filesystems/basefs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/filesystems/basefs.go b/hugolib/filesystems/basefs.go
index 7398957a3..ad69ddcc8 100644
--- 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)
}