From 6ec2f877c201ad238d44506a27fd26fc5518f891 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 11 Mar 2010 23:50:41 -0800 Subject: [PATCH] Depreciation -> Deprecation --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 5e8f752f86..25f249fa7b 100644 --- a/src/node.cc +++ b/src/node.cc @@ -420,7 +420,7 @@ static Handle Loop(const Arguments& args) { } static Handle Unloop(const Arguments& args) { - fprintf(stderr, "Node.js Depreciation: Don't use process.unloop(). It will be removed soon.\n"); + fprintf(stderr, "Deprecation: Don't use process.unloop(). It will be removed soon.\n"); HandleScope scope; int how = EVUNLOOP_ONE; if (args[0]->IsString()) {