From 71f8c99d5b7241a91ce86f28ef5909ffa80733b8 Mon Sep 17 00:00:00 2001 From: James O'Toole Date: Tue, 17 Feb 2015 17:08:23 +0000 Subject: [PATCH] Grammar correction, pointed out by fuhrysteve --- scripts/parsley-anyof.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/parsley-anyof.js b/scripts/parsley-anyof.js index f293c1d..273744e 100644 --- a/scripts/parsley-anyof.js +++ b/scripts/parsley-anyof.js @@ -1,5 +1,5 @@ $(document).ready(function() { window.ParsleyValidator.addValidator('anyof', function (value, array) { return array.indexOf(value); - }, 32).addMessage('en', 'anyof', 'The value you have given is not an listed option.') + }, 32).addMessage('en', 'anyof', 'The value you have given is not a listed option.') });