resource: Fix typo in comment
authorAlexey Grachov <grachov.alexey@gmail.com>
Wed, 24 Jan 2018 09:24:21 +0000 (11:24 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 24 Jan 2018 09:24:21 +0000 (10:24 +0100)
resource/resource.go

index e31cb7ff7b009f198611f4c92a21185d200d4260..2e5c8011af280ed8e21e26d8a8903a2a4bc31084 100644 (file)
@@ -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 {