Skip to content

Commit 4d448ea

Browse files
Merge pull request #1 from goldbergyoni/master
Updating fork to master
2 parents 8e8ca37 + bdf8d63 commit 4d448ea

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

.all-contributorsrc

+18
Original file line numberDiff line numberDiff line change
@@ -1277,6 +1277,24 @@
12771277
"contributions": [
12781278
"content"
12791279
]
1280+
},
1281+
{
1282+
"login": "andrewjbarbour",
1283+
"name": "andrewjbarbour",
1284+
"avatar_url": "https://avatars.githubusercontent.com/u/77080074?v=4",
1285+
"profile": "https://github.com/andrewjbarbour",
1286+
"contributions": [
1287+
"content"
1288+
]
1289+
},
1290+
{
1291+
"login": "MasujimaRyohei",
1292+
"name": "mr",
1293+
"avatar_url": "https://avatars.githubusercontent.com/u/17163541?v=4",
1294+
"profile": "https://MasujimaRyohei.jp",
1295+
"contributions": [
1296+
"content"
1297+
]
12801298
}
12811299
],
12821300
"projectName": "nodebestpractices",

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ const count = 2 // it tries to run 2(), but 2 is not a function
320320
(function doSomething() {
321321
// do something amazing
322322
}())
323-
// put a semicolon before the immediate invoked function, after the const definition, save the return value of the anonymous function to a variable or avoid IIFEs alltogether
323+
// put a semicolon before the immediate invoked function, after the const definition, save the return value of the anonymous function to a variable or avoid IIFEs altogether
324324
```
325325

326326
🔗 [**Read more:** "Semi ESLint rule"](https://eslint.org/docs/rules/semi)
@@ -340,7 +340,7 @@ const count = 2 // it tries to run 2(), but 2 is not a function
340340

341341
**TL;DR:** Use **_lowerCamelCase_** when naming constants, variables and functions and **_UpperCamelCase_** (capital first letter as well) when naming classes. This will help you to easily distinguish between plain variables/functions, and classes that require instantiation. Use descriptive names, but try to keep them short
342342

343-
**Otherwise:** Javascript is the only language in the world that allows invoking a constructor ("Class") directly without instantiating it first. Consequently, Classes and function-constructors are differentiated by starting with UpperCamelCase
343+
**Otherwise:** JavaScript is the only language in the world that allows invoking a constructor ("Class") directly without instantiating it first. Consequently, Classes and function-constructors are differentiated by starting with UpperCamelCase
344344

345345
### 3.6 Code Example
346346

@@ -1296,7 +1296,7 @@ All translations are contributed by the community. We will be happy to get any h
12961296

12971297
## Steering Committee
12981298

1299-
Meet the steering committee members - the people who work together to provide guidance and future direction to the project. In addition, each member of the committee leads a project tracked under our [Github projects](https://github.com/goldbergyoni/nodebestpractices/projects).
1299+
Meet the steering committee members - the people who work together to provide guidance and future direction to the project. In addition, each member of the committee leads a project tracked under our [GitHub projects](https://github.com/goldbergyoni/nodebestpractices/projects).
13001300

13011301
<img align="left" width="100" height="100" src="assets/images/members/yoni.png">
13021302

@@ -1561,6 +1561,8 @@ Thanks goes to these wonderful people who have contributed to this repository!
15611561
</tr>
15621562
<tr>
15631563
<td align="center"><a href="https://github.com/YA21"><img src="https://avatars.githubusercontent.com/u/37298463?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yuta Azumi</b></sub></a><br /><a href="#content-YA21" title="Content">🖋</a></td>
1564+
<td align="center"><a href="https://github.com/andrewjbarbour"><img src="https://avatars.githubusercontent.com/u/77080074?v=4?s=100" width="100px;" alt=""/><br /><sub><b>andrewjbarbour</b></sub></a><br /><a href="#content-andrewjbarbour" title="Content">🖋</a></td>
1565+
<td align="center"><a href="https://MasujimaRyohei.jp"><img src="https://avatars.githubusercontent.com/u/17163541?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mr</b></sub></a><br /><a href="#content-MasujimaRyohei" title="Content">🖋</a></td>
15641566
</tr>
15651567
</table>
15661568

0 commit comments

Comments
 (0)