Skip to content

Commit 9fc54fa

Browse files
authored
Merge pull request #170 from varkor/anti-colon-movement
Replace `::crate` with `crate`
2 parents 2f7dc1b + eeb705b commit 9fc54fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

chalk-engine/src/logic.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl<C: Context, CO: ContextOps<C>> Forest<C, CO> {
289289
ops: PhantomData<CO>,
290290
}
291291

292-
impl<C: Context, CO: ContextOps<C>, OP: WithInstantiatedStrand<C, CO>>
292+
impl<C: Context, CO: ContextOps<C>, OP: WithInstantiatedStrand<C, CO>>
293293
WithInstantiatedExClause<C> for With<C, CO, OP> {
294294
type Output = OP::Output;
295295

@@ -737,7 +737,7 @@ impl<C: Context, CO: ContextOps<C>> Forest<C, CO> {
737737
this: &'a mut Forest<C, CO>,
738738
}
739739

740-
impl<C: Context, CO: ContextOps<C>> WithInstantiatedUCanonicalGoal<C>
740+
impl<C: Context, CO: ContextOps<C>> WithInstantiatedUCanonicalGoal<C>
741741
for PushInitialStrandsInstantiated<'a, C, CO> {
742742
type Output = ();
743743

@@ -1166,7 +1166,7 @@ impl<C: Context, CO: ContextOps<C>> Forest<C, CO> {
11661166
depth: StackIndex,
11671167
strand: Strand<'_, C, impl Context>,
11681168
) -> StrandResult<C, ()> {
1169-
::crate::maybe_grow_stack(|| self.pursue_strand(depth, strand))
1169+
crate::maybe_grow_stack(|| self.pursue_strand(depth, strand))
11701170
}
11711171

11721172
/// Invoked when we have found a successful answer to the given

src/solve/slg/implementation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ impl context::UnificationOps<SlgContext, SlgContext> for TruncatingInferenceTabl
267267
value: &Canonical<InEnvironment<Goal>>,
268268
) -> (
269269
UCanonical<InEnvironment<Goal>>,
270-
::crate::solve::infer::ucanonicalize::UniverseMap,
270+
crate::solve::infer::ucanonicalize::UniverseMap,
271271
) {
272272
let UCanonicalized {
273273
quantified,

0 commit comments

Comments
 (0)