summaryrefslogtreecommitdiff
path: root/internal/findlinks/findlinks.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/findlinks/findlinks.go')
-rw-r--r--internal/findlinks/findlinks.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/findlinks/findlinks.go b/internal/findlinks/findlinks.go
index 00635ec..a4f29d7 100644
--- a/internal/findlinks/findlinks.go
+++ b/internal/findlinks/findlinks.go
@@ -15,7 +15,7 @@ type Link struct {
Text string
}
-// findLinks consumes the given [io.Reader], scraping it of anchor
+// FindLinks consumes the given [io.Reader], scraping it of anchor
// tags. Each anchor tag is "unmarshalled" into a [Link]. The
// resulting slice of Links is returned, along with an error.
func FindLinks(r io.Reader) ([]Link, error) {