Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fs: fix typo in error message
  • Loading branch information
bnoordhuis committed Dec 13, 2011
1 parent 6e76fc2 commit e90db17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_file.cc
Expand Up @@ -771,7 +771,7 @@ static Handle<Value> 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]);
Expand Down

0 comments on commit e90db17

Please sign in to comment.