summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-08 12:09:48 -0400
committerdemo <demo@antix1>2026-05-08 12:09:48 -0400
commitf81b6df76521e9d3765b3f6d668f11137fa203c5 (patch)
tree9bda4a60a218abc766abd18430f75908e51cae19
parentac4464a77e2b4c1c1c7a9fa1974e8b1f714b5040 (diff)
fix: use correct function name in doc comment
-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) {