Skip to content

Commit c133d1f

Browse files
committed
Merge pull request nodejs#18 from JimiHFord/patch-2
Update README.md
2 parents 1bd864f + 2102eda commit c133d1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1_hello_world/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This file tells GYP the following things:
4343

4444
### Step 4
4545

46-
Now write some code!
46+
Now write some code! Create a file called
4747
First we create a file `hello.cc` and the following contents:
4848

4949
```c++
@@ -66,7 +66,7 @@ NODE_MODULE(hello, Init)
6666
This code contains three main components, starting from the bottom:
6767
6868
```c++
69-
NODE_MODULE(hello, init)
69+
NODE_MODULE(hello, Init)
7070
```
7171

7272
This code defines the entry-point for the Node addon, it tells Node where to go once the library has been loaded into active memory. The first argument **must match the "target" in our *binding.gyp***. The second argument points to the function to invoke.

0 commit comments

Comments
 (0)