From 5731945187785e87352cf112380fad685db89636 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 8 Apr 2019 10:29:22 +0200 Subject: [PATCH] Apply suggestions from code review typos Co-Authored-By: RalfJung --- src/librustc_mir/interpret/place.rs | 2 +- src/librustc_mir/interpret/traits.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_mir/interpret/place.rs b/src/librustc_mir/interpret/place.rs index 93bef813ba69..048d51acaf2a 100644 --- a/src/librustc_mir/interpret/place.rs +++ b/src/librustc_mir/interpret/place.rs @@ -910,7 +910,7 @@ where /// create such an allocation. /// This is essentially `force_to_memplace`. /// - /// This supports unsized types and returnes the computed size to avoid some + /// This supports unsized types and returns the computed size to avoid some /// redundant computation when copying; use `force_allocation` for a simpler, sized-only /// version. pub fn force_allocation_maybe_sized( diff --git a/src/librustc_mir/interpret/traits.rs b/src/librustc_mir/interpret/traits.rs index 94e7f883f575..d76d3a330162 100644 --- a/src/librustc_mir/interpret/traits.rs +++ b/src/librustc_mir/interpret/traits.rs @@ -76,7 +76,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> InterpretCx<'a, 'mir, 'tcx, M> for (i, method) in methods.iter().enumerate() { if let Some((def_id, substs)) = *method { - // resolve for vtable: insert thims where needed + // resolve for vtable: insert shims where needed let substs = self.subst_and_normalize_erasing_regions(substs)?; let instance = ty::Instance::resolve_for_vtable( *self.tcx,