Skip to content

Commit 0d8646f

Browse files
fix: fix embarrassing typo (#550)
1 parent dba5de3 commit 0d8646f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sources/academy/tutorials/node_js/analyzing_pages_and_fixing_errors.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ slug: /node-js/analyzing-pages-and-fixing-errors
1111

1212
---
1313

14-
Debugging is absolutely essential in programming. Even if you don't call yourself a programmer, having basic debugging skills will make building crawlers easier. It will also help you safe money by allowing you to avoid hiring an expensive developer to solve your issue for you.
14+
Debugging is absolutely essential in programming. Even if you don't call yourself a programmer, having basic debugging skills will make building crawlers easier. It will also help you save money by allowing you to avoid hiring an expensive developer to solve your issue for you.
1515

1616
This quick lesson covers the absolute basics by discussing some of the most common problems and the simplest tools for analyzing and fixing them.
1717

1818
## Possible causes {#possible-causes}
1919

20-
It is often tricky to see the full scope of what can go wrong. We assume once the code is set up correctly, it will keep working. Unfortunately, that is rarely true in the realm of web scraping and automation.
20+
It is often tricky to see the full scope of what can go wrong. We assume that once the code is set up correctly, it will keep working. Unfortunately, that is rarely true in the realm of web scraping and automation.
2121

2222
Websites change, they introduce new [anti-scraping technologies](../../webscraping/anti_scraping/index.md), programming tools change and, in addition, people make mistakes.
2323

@@ -39,7 +39,7 @@ Web scraping and automation are very specific types of programming. It is not po
3939
4040
### Logging {#logging}
4141

42-
Logging is an essential tool for any programmer. When used correctly, they help you capture a surprising amount of information. Here are some general rules for logging:
42+
Logging is an essential tool for any programmer. When used correctly, it helps you capture a surprising amount of information. Here are some general rules for logging:
4343

4444
- Usually, **many logs** is better than **no logs** at all.
4545
- Putting more information into one line, rather than logging multiple short lines, helps reduce the overall log size.

0 commit comments

Comments
 (0)