Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2018-08-28 23:44:42 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-08-30 23:31:29 +0300
commite03eb90a366159ed9ef9888246de87f283508866 (patch)
treef36dd5a278651a46b6c5d9c4753b35d588f5cb7f /hugolib
parentc915d0d3252007d61b680a388dcbe6b035d0adc8 (diff)
hugolib: Fix godoc comment
Diffstat (limited to 'hugolib')
-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)
}