Merge pull request #40 from tellnes/master

[fix] Fix spelling in error message
master
Joshua Holbrook 2012-05-23 22:29:56 -07:00
commit 6b1b019353
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ var fs = require('fs'),
//
var File = exports.File = function (options) {
if (!options || !options.file) {
throw new Error ('Missing required option `files`');
throw new Error ('Missing required option `file`');
}
Memory.call(this, options);