Skip to content

Commit 90d24b3

Browse files
fix: missing semicolon
Co-authored-by: gullmar <[email protected]>
1 parent 0bf1ec4 commit 90d24b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_javascript2/11_scraping_variants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ These elements aren't visible to regular visitors. They're there just in case br
7272
Using our knowledge of Cheerio, we can locate the `option` elements and extract the data we need. We'll loop over the options, extract variant names, and create a corresponding array of items for each product:
7373

7474
```js
75-
const listingURL = "https://warehouse-theme-metal.myshopify.com/collections/sales"
75+
const listingURL = "https://warehouse-theme-metal.myshopify.com/collections/sales";
7676
const $ = await download(listingURL);
7777

7878
const $promises = $(".product-item").map(async (i, element) => {

0 commit comments

Comments
 (0)