Compare commits

...

6 Commits

Author SHA1 Message Date
Pranshu Chittora
c69e23d4e0 Merge 26ae159967 into 2aee46f169 2024-05-23 02:37:52 -03:00
Julien Le Coupanec
2aee46f169 Merge pull request #381 from FabricioLopees/fix/java
Update readme: fix grammatical error in java.md
2024-04-15 10:53:51 +02:00
FabricioLopees
22977d5ca1 update readme: fix grammatical error in java.md 2024-04-13 13:05:38 -03:00
FabricioLopees
a2c99c9674 update readme: fix grammatical error in java.md 2024-04-13 12:52:16 -03:00
pranshuchittora
26ae159967 Merge pull request #1 from pranshuchittora/pranshuchittora-1
Specified module importing path clearly
2018-07-29 10:22:58 +05:30
pranshuchittora
a8a8b56ad7 Specified module importing path clearly 2018-07-29 10:22:08 +05:30
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ ref(); // If you had previously unref()d a timer you can call ref() to explic
* http://nodejs.org/api/modules.html * http://nodejs.org/api/modules.html
* ******************************************************************************************* */ * ******************************************************************************************* */
// require() accepts a relative path of the given module w.r.t. the file you are importing it in.
var module = require('./module.js'); // Loads the module module.js in the same directory. var module = require('./module.js'); // Loads the module module.js in the same directory.
module.require('./another_module.js'); // load another_module as if require() was called from the module itself. module.require('./another_module.js'); // load another_module as if require() was called from the module itself.

View File

@@ -286,7 +286,7 @@ for(dataType item : array) {
### ACCESS MODIFIERS ### ACCESS MODIFIERS
1. defualt(No keyword required) 1. default(No keyword required)
2. private 2. private
3. public 3. public
4. protected 4. protected