summaryrefslogtreecommitdiff
path: root/classic.go
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-06-11 22:12:03 -0400
committerdemo <demo@antix1>2026-06-11 22:12:03 -0400
commit2c077d39ce47ea88c35b76b443aceb9e0bf67a7b (patch)
tree7eaf52a735463ab9374afb3fe4b80c9a0bab930a /classic.go
parentc210d76d3d8984ebc0643f5936134de22f0436d2 (diff)
style: rename findURLs to extractURLs
"Find" strongly implies an HTTP GET request, so I decided to change the name.
Diffstat (limited to 'classic.go')
-rw-r--r--classic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/classic.go b/classic.go
index 46c2bad..4a0bcc5 100644
--- a/classic.go
+++ b/classic.go
@@ -107,7 +107,7 @@ func getBatch(u url.URL) []url.URL {
return nil
}
- batch := findURLs(u, htmlDoc)
+ batch := extractURLs(u, htmlDoc)
return batch
}