Skip to content

Commit 71835ff

Browse files
authored
Merge pull request #600 from Ayashiihito/master
fixed some typos in 08-regexp-greedy-and-lazy and 1-xmlhttprequest
2 parents 6b4fc72 + d2006c9 commit 71835ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

5-regular-expressions/08-regexp-greedy-and-lazy/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Complex regular expressions are hard to optimize, so the search may work exactly
173173

174174
## Alternative approach
175175

176-
With regexps, there's often more then one way to do the same thing.
176+
With regexps, there's often more than one way to do the same thing.
177177

178178
In our case we can find quoted strings without lazy mode using the regexp `pattern:"[^"]+"`:
179179

7-network/1-xmlhttprequest/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ There are 3 methods for HTTP-headers:
267267
`setRequestHeader(name, value)`
268268
: Sets the request header with the given `name` and `value`.
269269

270-
Например:
270+
For instance:
271271

272272
```js
273273
xhr.setRequestHeader('Content-Type', 'application/json');

0 commit comments

Comments
 (0)