summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resource/resource.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/resource/resource.go b/resource/resource.go
index e31cb7ff7..2e5c8011a 100644
--- a/resource/resource.go
+++ b/resource/resource.go
@@ -112,7 +112,7 @@ Some examples:
* To find one resource by its prefix in the root dir of the bundle: .GetMatch image*
* To find all JPEG images anywhere in the bundle: .Match **.jpg`
-// GetBySuffix gets the first resource matching the given filename prefix, e.g
+// GetByPrefix gets the first resource matching the given filename prefix, e.g
// "logo" will match logo.png. It returns nil of none found.
// In potential ambiguous situations, combine it with ByType.
func (r Resources) GetByPrefix(prefix string) Resource {