Skip to content

Commit

Permalink
Human copyable format (#381)
Browse files Browse the repository at this point in the history
* Human copyable format

The previous version of formatting causes difficulties when trying to copy a line with a double click.
After inserting into the code, you have to delete parentheses.
In my opinion, this formatting option is more convenient and adapted for copy paste.
  • Loading branch information
demoj1 committed Feb 25, 2020
1 parent 62310a9 commit c4a6fd0
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 @@ -10,7 +10,9 @@ A release candidate has been published on Hex for 1.0. To use it add to your mix

```elixir
defp deps do
[{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false}]
[
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false},
]
end
```

Expand All @@ -32,7 +34,9 @@ To add it to a mix project, just add a line like this in your deps function in m

```elixir
defp deps do
[{:dialyxir, "~> 0.5", only: [:dev], runtime: false}]
[
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
]
end
```

Expand Down

0 comments on commit c4a6fd0

Please sign in to comment.