From 608d90362e1fedd612936acc7ade3dc65ddcb043 Mon Sep 17 00:00:00 2001 From: Kevin Ebaugh Date: Tue, 12 Sep 2023 09:03:18 -0400 Subject: [PATCH] Fix a couple of typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6998da3..364e63d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A Ruby gem to validate email addresses against RFC 2822 and RFC 5322. This gem is the O.G. email validation gem for Rails. It was started back in 2006. -Why use this validator? Instead of trying to validate email addresses with one giant regular expression, this library parses addresses character by character. This lets us handle weird cases likes [nested comments](https://www.rfc-editor.org/rfc/rfc5322#appendix-A.5). Gross but technically allowed. +Why use this validator? Instead of trying to validate email addresses with one giant regular expression, this library parses addresses character by character. This lets us handle weird cases like [nested comments](https://www.rfc-editor.org/rfc/rfc5322#appendix-A.5). Gross but technically allowed. In reality, most email validating scripts will get you where you need to go. This library just aims to go all the way. @@ -42,7 +42,7 @@ describe Person do end ``` -### Useage without Rails +### Usage without Rails ```ruby # Optional, if you want error messages to be in your language