diff options
author | Diego Alves <diego.oborba@gmail.com> | 2017-11-30 18:40:02 -0200 |
---|---|---|
committer | Diego Alves <diego.oborba@gmail.com> | 2017-11-30 18:40:02 -0200 |
commit | 2fa4c06612b793ec07277ce09b0165d2099c1640 (patch) | |
tree | 743071b5ee3549c3a80ca515c525d4dc7e5d96a2 | |
parent | Merge pull request #8 from digaoddc/readme (diff) |
Adjust readme to correctly display code snippet
-rw-r--r-- | README.md | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -8,19 +8,19 @@ If [available in Hex](https://hex.pm/docs/publish), the package can be installed 1. Add `powerdnsex` to your list of dependencies in `mix.exs`: - ```elixir - def deps do - [{:powerdnsex, "~> 0.1.0"}] - end - ``` +```elixir +def deps do + [{:powerdnsex, "~> 0.1.0"}] +end +``` 2. Ensure `powerdnsex` is started before your application: - ```elixir - def application do - [applications: [:powerdnsex]] - end - ``` +```elixir +def application do + [applications: [:powerdnsex]] +end +``` ## Configuration Insert this in your configuration files. Eg: `config.exs` |