Skip to content

Commit c3337c9

Browse files
committed
fix: remove unnecessary words
1 parent c6e4f29 commit c3337c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sources/academy/webscraping/scraping_basics_javascript2/09_getting_links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function parseProduct($productItem) {
121121
}
122122
```
123123

124-
Now the JSON export. For better readability of it, let's make a small change here and set the indentation level to two spaces:
124+
Now the JSON export. For better readability, let's make a small change here and set the indentation level to two spaces:
125125

126126
```js
127127
function exportJSON(data) {

sources/academy/webscraping/scraping_basics_python/09_getting_links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def parse_product(product):
115115
return {"title": title, "min_price": min_price, "price": price}
116116
```
117117

118-
Now the JSON export. For better readability of it, let's make a small change here and set the indentation level to two spaces:
118+
Now the JSON export. For better readability, let's make a small change here and set the indentation level to two spaces:
119119

120120
```py
121121
def export_json(file, data):

0 commit comments

Comments
 (0)