Skip to content

Commit

Permalink
Frozen string issue fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidoruk Nikolay committed Jun 9, 2020
1 parent 65c9be7 commit fa6cce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rambling/trie/stringifyable.rb
Expand Up @@ -19,7 +19,7 @@ def as_word
# String representation of the current node.
# @return [String] the string representation of the current node.
def to_s
parent.to_s << letter.to_s
parent.to_s + letter.to_s
end
end
end
Expand Down

0 comments on commit fa6cce5

Please sign in to comment.