Skip to content

Commit 026f138

Browse files
committed
Fixes
1 parent 7db86e9 commit 026f138

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
- rubocop-minitest
44

55
AllCops:
6-
TargetRubyVersion: 2.6
6+
TargetRubyVersion: 3.0
77
NewCops: enable
88

99
Style/StringLiterals:

lib/dotstrings/parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Parser
2525
TOK_T = 't'
2626
TOK_CAP_U = 'U'
2727
TOK_ZERO = '0'
28-
TOK_HEX_DIGIT = /[0-9a-fA-F]/.freeze
28+
TOK_HEX_DIGIT = /[0-9a-fA-F]/
2929

3030
# States
3131
STATE_START = 0

0 commit comments

Comments
 (0)