diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-10-29 23:59:35 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-10-30 05:49:23 +0100 |
commit | 57890465bdea58f7cc576d917e30bca7a6683c5d (patch) | |
tree | ba19b6f7cdeaf99963dcf3c40eec4c102cf40a68 /bin | |
parent | ad0a4cefb8b4bf469bb1caa6e671a1009e40a81f (diff) | |
download | node-new-57890465bdea58f7cc576d917e30bca7a6683c5d.tar.gz |
A few more node->process changes
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/node-repl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/node-repl b/bin/node-repl index 00975dc379..e08dee0043 100755 --- a/bin/node-repl +++ b/bin/node-repl @@ -1,6 +1,6 @@ #!/usr/bin/env node -node.mixin(require("/utils.js")); +process.mixin(require("/utils.js")); puts("Welcome to the Node.js REPL."); puts("Enter ECMAScript at the prompt."); puts("Tip 1: Use 'rlwrap node-repl' for a better interface"); |