Skip to content

Commit

Permalink
src: fix function and variable names in comments
Browse files Browse the repository at this point in the history
The `src/node.js` file is actually loaded and executed by
`node::LoadEnvironment` function.

The variable which has the contents is, `native_node`.

PR-URL: #3039
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
thefourtheye authored and rvagg committed Sep 30, 2015
1 parent 4c8d96b commit fde0c6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2967,7 +2967,7 @@ void LoadEnvironment(Environment* env) {
env->isolate()->AddMessageListener(OnMessage);

// Compile, execute the src/node.js file. (Which was included as static C
// string in node_natives.h. 'natve_node' is the string containing that
// string in node_natives.h. 'native_node' is the string containing that
// source code.)

// The node.js file returns a function 'f'
Expand Down
7 changes: 4 additions & 3 deletions src/node.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Hello, and welcome to hacking node.js!
//
// This file is invoked by node::Load in src/node.cc, and responsible for
// bootstrapping the node.js core. Special caution is given to the performance
// of the startup process, so many dependencies are invoked lazily.
// This file is invoked by node::LoadEnvironment in src/node.cc, and is
// responsible for bootstrapping the node.js core. As special caution is given
// to the performance of the startup process, many dependencies are invoked
// lazily.

'use strict';

Expand Down

0 comments on commit fde0c6f

Please sign in to comment.