diff --git a/basis/validators/validators.factor b/basis/validators/validators.factor index e49f608e94..eaf8056c45 100644 --- a/basis/validators/validators.factor +++ b/basis/validators/validators.factor @@ -65,7 +65,7 @@ IN: validators v-regexp ; : v-url ( str -- str ) - "URL" R' (ftp|http|https)://\S+' v-regexp ; + "URL" R' (?:ftp|http|https)://\S+' v-regexp ; : v-captcha ( str -- str ) dup empty? [ "must remain blank" throw ] unless ;