Skip to content

Commit 86b4b70

Browse files
committed
Merge pull request kanwei#14 from rubycoder1/patch-1
Update lib/containers/trie.rb -- fix typo
2 parents 6520662 + 76cc67c commit 86b4b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/containers/trie.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Containers::Trie
1313
#
1414
# t = Containers::Trie.new
1515
# t["hello"] = "world"
16-
# t["hello] #=> "world"
16+
# t["hello"] #=> "world"
1717
def initialize
1818
@root = nil
1919
end

0 commit comments

Comments
 (0)