Skip to content

Commit

Permalink
Merge pull request #17 from SoftSwiss/rc-frozen_string_issue_fix
Browse files Browse the repository at this point in the history
Frozen string issue fix.
  • Loading branch information
gonzedge committed Jun 10, 2020
2 parents 65c9be7 + fa6cce5 commit 5b3ab1b
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 5b3ab1b

Please sign in to comment.