Skip to content

Commit f9cf6cf

Browse files
committed
wrap at 80 chars
1 parent 08bf835 commit f9cf6cf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

02_functions/modulename.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <node/v8.h>
22
#include <node/node.h>
33

4-
// STL
4+
// C standard library
55
#include <cstdlib>
66
#include <ctime>
77

@@ -29,7 +29,8 @@ void RegisterModule(Handle<Object> target) {
2929
srand(time(NULL));
3030

3131
// target is the module object you see when require()ing the .node file.
32-
target->Set(String::NewSymbol("random"), FunctionTemplate::New(Random)->GetFunction());
32+
target->Set(String::NewSymbol("random"),
33+
FunctionTemplate::New(Random)->GetFunction());
3334
}
3435

3536
NODE_MODULE(modulename, RegisterModule);

0 commit comments

Comments
 (0)