Skip to content

Commit bfe9195

Browse files
authoredOct 18, 2017
Merge pull request #459 from sovietspaceship/patch-1
fix 'vaildation' typoes
2 parents d710828 + 4dbe097 commit bfe9195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/paths.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ internals.paths.prototype.build = function (routes) {
119119
// swap out any custom validation function for Joi object/string
120120
if (Utilities.isFunction(routeData[property])) {
121121
if (property !== 'pathParams') {
122-
self.settings.log(['vaildation', 'warning'], 'Using a Joi.function for a query, header or payload is not supported.');
122+
self.settings.log(['validation', 'warning'], 'Using a Joi.function for a query, header or payload is not supported.');
123123
if (property === 'payloadParams') {
124124
routeData[property] = Joi.object().label('Hidden Model');
125125
} else {
126126
routeData[property] = Joi.object({ 'Hidden Model': Joi.string() });
127127
}
128128
} else {
129-
self.settings.log(['vaildation', 'error'], 'Using a Joi.function for a params is not supported and has been removed.');
129+
self.settings.log(['validation', 'error'], 'Using a Joi.function for a params is not supported and has been removed.');
130130
routeData[property] = null;
131131
}
132132
}

0 commit comments

Comments
 (0)
Please sign in to comment.