From: karland Date: Fri, 4 Nov 2016 10:18:08 +0000 (+0100) Subject: Further small corrections X-Git-Tag: v6.3-rc1~36^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=681444d0b2fff0c0fcfa566be62ea455d2593673;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Further small corrections --- diff --git a/docs/pages/abide.md b/docs/pages/abide.md index 9ddcfa056..54178b657 100644 --- a/docs/pages/abide.md +++ b/docs/pages/abide.md @@ -227,9 +227,9 @@ alpha : /^[a-zäöüßA-ZÄÖÜ]+$/, alpha_numeric : /^[a-zäöüßA-ZÄÖÜ0-9]+$/, ``` -Then you need to customize the builtin pattern as explained in the next section. Otherwise Abide will produce an error if a special character is input in your text field which is validated with `pattern="alpha"` or `pattern="alpha_numeric"`. +Then you need to customize the builtin patterns as explained in the next section. Otherwise Abide will produce an error if a special character is input in your text field which is validated with `pattern="alpha"` or `pattern="alpha_numeric"`. -Here is the definition of the builtin patterns: +Here are the definitions of the builtin patterns: ```JS alpha : /^[a-zA-Z]+$/,