Skip to content

Commit

Permalink
dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Llamas committed Dec 28, 2012
1 parent d9bb4f2 commit f193ec1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions buffered-writer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ var FS = require ("fs");
var ep = require ("error-provider");

ep.create (ep.next (), "INVALID_BUFFER_SIZE",
"The buffer size must be greater than 0.");
"The buffer size must be greater than 0");
ep.create (ep.next (), "STREAM_CLOSED",
"The stream is already closed, cannot write nor close it again.");
"The stream is already closed, cannot write nor close it again");
ep.create (ep.next (), "INVALID_OFFSET_LENGTH",
"The offset or length parameters are not valid (offset={offset}, " +
"length={length}, length-offset<0).");
"length={length}, length-offset<0)");
ep.create (ep.next (), "INVALID_DATA",
"The data can only be a Number, String, Array or Buffer.");
"The data can only be a Number, String, Array or Buffer");

var BUFFER_SIZE = 16384;
var EOL = process.platform === "win32"
Expand Down

0 comments on commit f193ec1

Please sign in to comment.