Skip to content

Commit

Permalink
Use same format as in mix.exs generated with Elixir v1.7 for dependen…
Browse files Browse the repository at this point in the history
…cies (#945)
  • Loading branch information
eksperimental authored and josevalim committed Dec 21, 2018
1 parent 6d9cc72 commit 17154dd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,19 @@ If you are using Elixir v1.7 and later:

```elixir
def deps do
[{:ex_doc, "~> 0.19", only: :dev, runtime: false}]
[
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
]
end
```

If you are using Elixir v1.6 and earlier:

```elixir
def deps do
[{:ex_doc, "~> 0.18.0", only: :dev, runtime: false}]
[
{:ex_doc, "~> 0.18.0", only: :dev, runtime: false},
]
end
```

Expand Down

0 comments on commit 17154dd

Please sign in to comment.