Skip to content

Commit

Permalink
Fixes emails module name inconsistency in README.md (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbernardo95 authored and paulcsmith committed Jan 4, 2017
1 parent 913d50d commit ce913d1
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
Expand Up @@ -96,7 +96,7 @@ defmodule MyApp.Mailer do
end

# Define your emails
defmodule MyApp.Email do
defmodule MyApp.Emails do
import Bamboo.Email

def welcome_email do
Expand Down Expand Up @@ -255,7 +255,7 @@ defmodule MyApp.Registration do

MyApp.Register(user)

assert_delivered_email MyApp.Email.welcome_email(user)
assert_delivered_email MyApp.Emails.welcome_email(user)
end
end
```
Expand Down

0 comments on commit ce913d1

Please sign in to comment.