Skip to content

Commit

Permalink
Format Code
Browse files Browse the repository at this point in the history
  • Loading branch information
maennchen committed Aug 10, 2018
1 parent dacd64d commit 3604c14
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/.credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
checks: [
# For others you can also set parameters
{Credo.Check.Readability.MaxLineLength, priority: :low, max_length: 120},
{Credo.Check.Readability.MaxLineLength, priority: :low, max_length: 120}
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion lib/crontab/cron_expression.ex
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ defmodule Crontab.CronExpression do
end

defimpl Inspect do
alias Crontab.CronExpression.Composer
alias Crontab.CronExpression
alias Crontab.CronExpression.Composer

@doc """
Pretty Print Cron Expressions
Expand Down
2 changes: 1 addition & 1 deletion lib/crontab/cron_expression/ecto_type.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ if Code.ensure_compiled?(Ecto.Type) do
"""

alias Crontab.CronExpression
alias Crontab.CronExpression.Parser
alias Crontab.CronExpression.Composer
alias Crontab.CronExpression.Parser

@behaviour Ecto.Type

Expand Down
1 change: 0 additions & 1 deletion lib/crontab/scheduler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ defmodule Crontab.Scheduler do
iex> Crontab.Scheduler.get_previous_run_date! %Crontab.CronExpression{reboot: true}
** (RuntimeError) Special identifier @reboot is not supported.
"""
@spec get_previous_run_date!(CronExpression.t(), NaiveDateTime.t(), integer) ::
NaiveDateTime.t() | no_return
Expand Down

0 comments on commit 3604c14

Please sign in to comment.