Skip to content

Commit

Permalink
fix cargo doc error
Browse files Browse the repository at this point in the history
  • Loading branch information
jhellerstein committed Oct 21, 2024
1 parent d8a6fc3 commit cd51093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lattices/src/ght.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub trait GeneralizedHashTrieNode: Default {
fn insert(&mut self, row: Self::Schema) -> bool;

/// Returns `true` if the (entire) row is found below in the trie, `false` otherwise.
/// See [`Self::get`] to look just for "head" keys in this node
/// See [`GhtGet::get`] to look just for "head" keys in this node
fn contains<'a>(&'a self, row: <Self::Schema as VariadicExt>::AsRefVar<'a>) -> bool;

/// Iterate through (entire) rows stored in this HashTrie.
Expand Down

0 comments on commit cd51093

Please sign in to comment.