Skip to content

Commit

Permalink
fix small typo. oops
Browse files Browse the repository at this point in the history
  • Loading branch information
bberry6 committed Jul 7, 2015
1 parent 8ce3f71 commit b1d09b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/prepare-adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ module.exports = function (app){
db = parseInt(adapterConfig.db, 10);
if(isNaN(db) || db > 15 || db < 0){
db = 0;
sails.log.warn('socket.io-redis db adapter paramter must be a number between 0 and 15');
sails.log.warn('socket.io-redis db adapter parameter must be a number between 0 and 15');
sails.log.warn('Falling back to database 0');
}
// then call `select` on that redis database
Expand Down

0 comments on commit b1d09b2

Please sign in to comment.