We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a40d0 commit 7116b5aCopy full SHA for 7116b5a
lib/message_format/parser.rb
@@ -179,7 +179,7 @@ def parse_argument ()
179
180
def parse_arg_id ()
181
skip_whitespace()
182
- id = ''
+ id = +''
183
while @index < @length
184
char = @pattern[@index]
185
if char == '{' or char == '#'
@@ -188,7 +188,7 @@ def parse_arg_id ()
188
if char == '}' or char == ',' or is_whitespace(char)
189
break
190
end
191
- id += char
+ id << char
192
@index += 1
193
194
if id.empty?
0 commit comments