Skip to content

Commit f550e0f

Browse files
committed
yikes
1 parent 7bf456d commit f550e0f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

compiler/rustc_infer/src/infer/resolve.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use rustc_data_structures::sso::SsoHashMap;
21
use rustc_middle::bug;
32
use rustc_middle::ty::fold::{FallibleTypeFolder, TypeFolder, TypeSuperFoldable};
43
use rustc_middle::ty::visit::TypeVisitableExt;

compiler/rustc_type_ir/src/data_structures/delayed_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const CACHE_CUTOFF: u32 = 16;
66

77
/// A hashmap which only starts hashing after ignoring the first few inputs.
88
///
9-
/// This is used in type folders asin nearly all cases caching is not worth it
9+
/// This is used in type folders as in nearly all cases caching is not worth it
1010
/// as nearly all folded types are tiny. However, there are very rare incredibly
1111
/// large types for which caching is necessary to avoid hangs.
1212
#[derive(Debug)]

0 commit comments

Comments
 (0)