Change the include() message so that it doesn't recommend process.mixin.

pull/22966/head
isaacs 2010-03-08 15:08:30 -08:00 committed by Ryan Dahl
parent 602d1861a1
commit b90d63b998
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ function removed (reason) {
}
GLOBAL.__module = removed("'__module' has been renamed to 'module'");
GLOBAL.include = removed("include(module) has been removed. Use process.mixin(GLOBAL, require(module)) to get the same effect.");
GLOBAL.include = removed("include(module) has been removed. Use require(module)");
GLOBAL.puts = removed("puts() has moved. Use require('sys') to bring it back.");
GLOBAL.print = removed("print() has moved. Use require('sys') to bring it back.");
GLOBAL.p = removed("p() has moved. Use require('sys') to bring it back.");