This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-validator.git
The following commit(s) were added to refs/heads/master by this push: new 76524809 Fix typo 76524809 is described below commit 76524809e2ca09509fcdb1991c6580257962f990 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 30 08:30:24 2022 -0400 Fix typo --- src/main/java/org/apache/commons/validator/routines/UrlValidator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/validator/routines/UrlValidator.java b/src/main/java/org/apache/commons/validator/routines/UrlValidator.java index f8f046b3..00230c1b 100644 --- a/src/main/java/org/apache/commons/validator/routines/UrlValidator.java +++ b/src/main/java/org/apache/commons/validator/routines/UrlValidator.java @@ -307,7 +307,7 @@ public class UrlValidator implements Serializable { } catch (final URISyntaxException e) { return false; } - // OK, perfom additional validation + // OK, perform additional validation final String scheme = uri.getScheme(); if (!isValidScheme(scheme)) {