From c07d8eae44237a0938edacc57ef21aacadcb79ca Mon Sep 17 00:00:00 2001 From: gabriel-logan Date: Thu, 11 Jul 2024 10:09:55 -0300 Subject: [PATCH] chore: Update email validation example in Main class --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 412cba0..69f5de5 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,8 @@ public class Main { } public static void validateEmailExample() { + // IMPORTANT: validDomains can not be used with validDomainsList, you can use only one of them + // Basic email validation boolean isValid = Validate.validateEmail("example@example.com"); System.out.println("Is valid: " + isValid); // Expected: true