lib/rambling/trie/missing_node.rb in rambling-trie-0.9.3 vs lib/rambling/trie/missing_node.rb in rambling-trie-1.0.0

- old
+ new

@@ -1,7 +1,8 @@ module Rambling module Trie - # A representation of a missing node in the Trie data structure. + # A representation of a missing node in the trie data structure. Returned + # when a node is not found. class MissingNode < Rambling::Trie::Node end end end