Skip to content

Commit df28977

Browse files
honzajavorekTC-MO
andauthored
style: use different word for later
Co-authored-by: Michał Olender <92638966+TC-MO@users.noreply.github.com>
1 parent a2f4466 commit df28977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_python/03_devtools_extracting_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To figure out how to get the price, we'll use the **Elements** tab of DevTools a
5858

5959
![Finding child elements](./images/devtools-product-details.png)
6060

61-
We could either rely on the fact that the sale price is likely to be always the one which is highlighted, or that it's always the first price. For now we'll rely on the later and we'll let `querySelector()` to simply return the first result:
61+
We could either rely on the fact that the sale price is likely to be always the one which is highlighted, or that it's always the first price. For now we'll rely on the latter and we'll let `querySelector()` to simply return the first result:
6262

6363
```js
6464
price = subwoofer.querySelector('.price');

0 commit comments

Comments
 (0)