Skip to content

Commit 5ae0452

Browse files
honzajavorekmnmkng
andcommitted
fix: typo
Co-authored-by: Ondra Urban <[email protected]>
1 parent 1f97e82 commit 5ae0452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_python/05_parsing_html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ After manually inspecting the page in browser DevTools we can see that all produ
3333
</div>
3434
```
3535

36-
At first sight, counting `product-item` occurances wouldn't match only products, but also `product-item__image-wrapper`. Hmm.
36+
At first sight, counting `product-item` occurrences wouldn't match only products, but also `product-item__image-wrapper`. Hmm.
3737

3838
We could try looking for `<div class="product-item`, a substring which represents the enitre beginning of each product tag, but that would also count `<div class="product-item__info`! We'll need to add a space after the class name to avoid matching those. Replace your program with the following code:
3939

0 commit comments

Comments
 (0)