Skip to content

Commit 2a12ab1

Browse files
authored
Fix minor typos/mistakes
1 parent cb0cd3b commit 2a12ab1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You should always pick the right tool for the right job. Unfortunately, there wi
6464

6565
![science is more art than science](/images/science_art.png)
6666

67-
Aside of technical considerations, other considerations, such as community adoption are also important. It was reported that Facebook moved away from the Erlang language because [it was hard to find qualified programmers](http://highscalability.com/blog/2014/2/26/the-whatsapp-architecture-facebook-bought-for-19-billion.html)
67+
Aside of technical considerations, other considerations, such as community adoption are also important. It was [reported](http://highscalability.com/blog/2014/2/26/the-whatsapp-architecture-facebook-bought-for-19-billion.html) that Facebook moved away from the Erlang language because it was hard to find qualified programmers.
6868

6969
Having said that, it is worthy to note that Javascript excels in I/O intense applications, and less so in CPU intense applications.
7070

@@ -180,7 +180,7 @@ It is more idiomatic to use short variables as receivers. In the example above `
180180
## (D) `new` keyword
181181
**JS**
182182

183-
`new Foo()` instantiates an object from `Foo`, a constructor function.
183+
`new Foo()` instantiates an object from `Foo`, a constructor function or a class.
184184

185185
**Go**
186186

@@ -235,7 +235,7 @@ go func() {
235235
## (D) String literals
236236
**JS**
237237

238-
Strings are initialized with single quotes (`'hello'`) or double quotes (`"hello"`). Most coding styles prefer the single quotes variation.
238+
Strings are initialized with single quotes (`'hello'`) or double quotes (`"hello"`), yet most coding styles prefer the single quotes variation. Raw string literals use backticks (``` `hello` ```).
239239

240240
**Go**
241241

@@ -332,7 +332,7 @@ for i < 10 {
332332
i++
333333
}
334334
```
335-
###Iterating over an Array/Slice
335+
### Iterating over an Array/Slice
336336

337337
**JS**
338338
```Javascript

0 commit comments

Comments
 (0)