Skip to content

Commit

Permalink
Merge pull request #17 from ausimian/fix-link-in-docs
Browse files Browse the repository at this point in the history
Fix link in generated documentation.
  • Loading branch information
ausimian committed Jan 21, 2017
2 parents d9a189b + 9b76a33 commit 0095dcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Timelier is a _cron_ style scheduling application for Elixir. It will match a li

```elixir
def deps do
[{:timelier, "~> 0.9.1"}]
[{:timelier, "~> 0.9.2"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion lib/timelier.ex
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defmodule Timelier do
The crontab for Timelier will often contain tasks whose execution is
dependent upon particular applications running. To ensure `timelier`
can successfully start tasks defined in your application (or its
dependencies), add it as an [![included application](http://erlang.org/doc/design_principles/included_applications.html)]:
dependencies), add it as an [included application](http://erlang.org/doc/design_principles/included_applications.html):
def application do
[included_applications: [:timelier]]
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Timelier.Mixfile do

def project do
[app: :timelier,
version: "0.9.1",
version: "0.9.2",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 0095dcf

Please sign in to comment.