Skip to content

Commit

Permalink
update link
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongwencool committed Oct 17, 2019
1 parent baec9a4 commit 9bcc770
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ It offers:
* Use gen_server timeout(`receive after`) at any given time (rather than reevaluating upcoming jobs every second/minute).
* Minimal overhead. ecron aims to keep its code base small.

You can find more [Erlang Specific Usage](https://github.com/zhongwencool/ecron/blob/master/examples/titan_erlang) and [Elixir Specific Usage]((https://github.com/zhongwencool/ecron/blob/master/examples/titan_elixir)).
You can find more [Erlang Specific Usage](https://github.com/zhongwencool/ecron/blob/master/examples/titan_erlang) and [Elixir Specific Usage](https://github.com/zhongwencool/ecron/blob/master/examples/titan_elixir).

## Basic Usage

Expand Down
2 changes: 1 addition & 1 deletion src/ecron.erl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ next => [calendar:datetime()]}.
add(JobName, Spec, MFA) ->
add(JobName, Spec, MFA, unlimited, unlimited, []).

%% @equiv add_with_count(make_ref(), Spec, MFA, RunCount).
%% @equiv add_with_count(make_ref(), Spec, MFA, RunCount)
-spec add_with_count(crontab_spec(), mfa(), pos_integer()) ->
{ok, name()} | {error, parse_error(), term()}.
add_with_count(Spec, MFA, RunCount) when is_integer(RunCount) ->
Expand Down

0 comments on commit 9bcc770

Please sign in to comment.