Skip to content

Commit

Permalink
missed do in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
narrowtux committed Oct 19, 2017
1 parent c2d0a15 commit e7c081a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ end
You have to hook ExAudit to your repo, by replacing `Ecto.Repo` with `ExAudit.Repo`:

```elixir
defmodule MyApp.Repo
defmodule MyApp.Repo do
use ExAudit.Repo, otp_app: :my_app
end
```
Expand Down Expand Up @@ -54,7 +54,7 @@ to the table or decide which type to use for the primary key.
#### `version.ex`

```elixir
defmodule MyApp.Version
defmodule MyApp.Version do
use Ecto.Schema
import Ecto.Changeset

Expand Down Expand Up @@ -87,7 +87,7 @@ end
```

#### `create_version_table.exs`
]

```elixir
defmodule MyApp.Migrations.AddVersions do
use Ecto.Migration
Expand Down

0 comments on commit e7c081a

Please sign in to comment.