From ebab38e340f9e93fd972bf94ae0078d5c4591f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20S=C3=A9veno?= Date: Fri, 27 Sep 2024 15:32:41 +0200 Subject: [PATCH] fix: typo in readme about config file to deny email domains --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c75e861..8ee92e5 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ To validate that the domain is not a disposable email or a disposable email (che validates :email, 'valid_email_2/email': { disposable_domain_with_allow_list: true } ``` -To validate that the domain is not on the deny list (under config/deny_list_email_domains.yml): +To validate that the domain is not on the deny list (under config/deny_listed_email_domains.yml): ```ruby validates :email, 'valid_email_2/email': { deny_list: true } ```