fixed typo

This commit is contained in:
Baris Soner Usakli
2013-12-31 14:32:16 -05:00
parent f933fc0167
commit 1b41a8f467

View File

@@ -33,7 +33,7 @@ var async = require('async'),
return callback(new Error('no-privileges'));
} else if (!cid) {
return callback(new Error('invalid-cid'));
} else if (!title || title.length < parseInt(meta.config.minimumTitleLength, 10) {
} else if (!title || title.length < parseInt(meta.config.minimumTitleLength, 10)) {
return callback(new Error('title-too-short'), null);
} else if(title.length > parseInt(meta.config.maximumTitleLength, 10)) {
return callback(new Error('title-too-long'), null);