Skip to content

Commit

Permalink
Fixes typo in minute definition (closes #27)
Browse files Browse the repository at this point in the history
  • Loading branch information
elcuervo committed May 31, 2016
1 parent 0d63ef4 commit bba9c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/minuteman/configuration.rb
Expand Up @@ -13,7 +13,7 @@ def initialize
month: -> (time) { time.strftime("%Y-%m") },
day: -> (time) { time.strftime("%Y-%m-%d") },
hour: -> (time) { time.strftime("%Y-%m-%d %H") },
minute: -> (time) { time.strftime("%Y-%m-%d %H:%m") },
minute: -> (time) { time.strftime("%Y-%m-%d %H:%M") },
}
end

Expand Down

0 comments on commit bba9c8f

Please sign in to comment.