Skip to content

Commit

Permalink
Merge pull request #100 from kevinebaugh/patch-1
Browse files Browse the repository at this point in the history
Fix a couple of typos in README.md
alexdunae authored Dec 13, 2023
2 parents bcd2f66 + 608d903 commit f69f4c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f69f4c0

Please sign in to comment.