|
@@ -46,7 +46,7 @@ Add it to your deps:
|
|
|
|
|
|
```elixir
|
|
|
defp deps do
|
|
|
- [{:syn, "~> 2.1"}]
|
|
|
+ [{:syn, "~> 2.0"}]
|
|
|
end
|
|
|
```
|
|
|
|
|
@@ -65,14 +65,14 @@ If you're using [rebar3](https://github.com/erlang/rebar3), add `syn` as a depen
|
|
|
|
|
|
```erlang
|
|
|
{deps, [
|
|
|
- {syn, {git, "git://github.com/ostinelli/syn.git", {tag, "2.1.0"}}}
|
|
|
+ {syn, {git, "git://github.com/ostinelli/syn.git", {tag, "2.0.1"}}}
|
|
|
]}.
|
|
|
```
|
|
|
Or, if you're using [Hex.pm](https://hex.pm/) as package manager (with the [rebar3_hex](https://github.com/hexpm/rebar3_hex) plugin):
|
|
|
|
|
|
```erlang
|
|
|
{deps, [
|
|
|
- {syn, "2.1.0"}
|
|
|
+ {syn, "2.0.1"}
|
|
|
]}.
|
|
|
```
|
|
|
|