hugolib: Fix godoc comment

This commit is contained in:
Cameron Moore 2018-08-28 15:44:42 -05:00 committed by Bjørn Erik Pedersen
parent c915d0d325
commit e03eb90a36

View file

@ -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)
}