diff --git a/src/node_file.cc b/src/node_file.cc index c6af67db2a4..5e0c0ad048c 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -771,7 +771,7 @@ static Handle Read(const Arguments& args) { len = args[3]->Int32Value(); if (off + len > buffer_length) { return ThrowException(Exception::Error( - String::New("Length is extends beyond buffer"))); + String::New("Length extends beyond buffer"))); } pos = GET_OFFSET(args[4]);