File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ pub trait HirDatabase: DefDatabase + Upcast<dyn DefDatabase> {
90
90
#[ salsa:: cycle( crate :: lower:: ty_recover) ]
91
91
fn ty ( & self , def : TyDefId ) -> Binders < Ty > ;
92
92
93
- /// Returns the type of the value of the given constant, or `None` if the the `ValueTyDefId` is
93
+ /// Returns the type of the value of the given constant, or `None` if the `ValueTyDefId` is
94
94
/// a `StructId` or `EnumVariantId` with a record constructor.
95
95
#[ salsa:: invoke( crate :: lower:: value_ty_query) ]
96
96
fn value_ty ( & self , def : ValueTyDefId ) -> Option < Binders < Ty > > ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ type QueryStack = Vec<ActiveQuery>;
12
12
13
13
#[ derive( Debug , Default ) ]
14
14
pub ( super ) struct DependencyGraph {
15
- /// A `(K -> V)` pair in this map indicates that the the runtime
15
+ /// A `(K -> V)` pair in this map indicates that the runtime
16
16
/// `K` is blocked on some query executing in the runtime `V`.
17
17
/// This encodes a graph that must be acyclic (or else deadlock
18
18
/// will result).
You can’t perform that action at this time.
0 commit comments