Skip to content

Commit b45c5a3

Browse files
committed
Fix typos
1 parent fd43d91 commit b45c5a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

5-network/08-websocket/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ socket.onmessage = function(event) {
312312
}
313313
```
314314

315-
Server-side code is a little bit beyound our scope here. We're using browser WebSocket API, a server may have another library.
315+
Server-side code is a little bit beyond our scope here. We're using browser WebSocket API, a server may have another library.
316316

317317
Still it can also be pretty simple. We'll use Node.js with <https://github.com/websockets/ws> module for websockets.
318318

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ That's what's going on:
264264
2. Then it looks for `pattern:.*?`: takes one character (lazily!), check if there's a match for `pattern:" class="doc">` (none).
265265
3. Then takes another character into `pattern:.*?`, and so on... until it finally reaches `match:" class="doc">`.
266266

267-
But the problem is: that's already beyound the link, in another tag `<p>`. Not what we want.
267+
But the problem is: that's already beyond the link, in another tag `<p>`. Not what we want.
268268

269269
Here's the picture of the match aligned with the text:
270270

0 commit comments

Comments
 (0)