Skip to content

Commit

Permalink
Fix RuboCop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
timriley committed May 10, 2024
1 parent 0625486 commit ded0988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dry/logger/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module Logger

# @since 1.0.0
# @api private
LEVEL_RANGE = (DEBUG..UNKNOWN).freeze
LEVEL_RANGE = (DEBUG..UNKNOWN)

# @since 1.0.0
# @api private
Expand Down
2 changes: 1 addition & 1 deletion lib/dry/logger/formatters/template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module Formatters
class Template
# @since 1.0.0
# @api private
TOKEN_REGEXP = /%<(\w*)>s/.freeze
TOKEN_REGEXP = /%<(\w*)>s/

# @since 1.0.0
# @api private
Expand Down

0 comments on commit ded0988

Please sign in to comment.