Skip to content

Commit e45a14b

Browse files
committed
fix: forgotten $ in variable name
1 parent 409aa6c commit e45a14b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_javascript2/10_crawling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async function download(url) {
3131
}
3232
}
3333

34-
function parseProduct(productItem, baseURL) {
34+
function parseProduct($productItem, baseURL) {
3535
const $title = $productItem.find(".product-item__title");
3636
const title = $title.text().trim();
3737
const url = new URL($title.attr("href"), baseURL).href;

0 commit comments

Comments
 (0)