Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/salsa/src/lib.rs')
| -rw-r--r-- | crates/salsa/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/salsa/src/lib.rs b/crates/salsa/src/lib.rs index f86683ee77..5dde0d560f 100644 --- a/crates/salsa/src/lib.rs +++ b/crates/salsa/src/lib.rs @@ -443,7 +443,7 @@ pub trait QueryDb<'d>: Sized { /// Trait implements by all of the "special types" associated with /// each of your queries. pub trait Query: Debug + Default + Sized + for<'d> QueryDb<'d> { - /// Type that you you give as a parameter -- for queries with zero + /// Type that you give as a parameter -- for queries with zero /// or more than one input, this will be a tuple. type Key: Clone + Debug + Hash + Eq; |