nit: use consistent indentation for `gameSchema` object

This commit is contained in:
Christopher Van 2015-01-20 16:30:59 -08:00
Родитель 9d888468ac
Коммит 14d3f41488
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -22,7 +22,7 @@ var gameSchema = {
// and must contain only letters, numbers, underscores, and hyphens.
// TODO: Throw an error if `slug` is already taken.
slug: Joi.string().regex(/^(?!\d*$)(?!_*$)(?!-*$)[\w-]+$/).required()
.example('mario-bros')
.example('mario-bros')
};