We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bf456d commit f550e0fCopy full SHA for f550e0f
compiler/rustc_infer/src/infer/resolve.rs
@@ -1,4 +1,3 @@
1
-use rustc_data_structures::sso::SsoHashMap;
2
use rustc_middle::bug;
3
use rustc_middle::ty::fold::{FallibleTypeFolder, TypeFolder, TypeSuperFoldable};
4
use rustc_middle::ty::visit::TypeVisitableExt;
compiler/rustc_type_ir/src/data_structures/delayed_map.rs
@@ -6,7 +6,7 @@ const CACHE_CUTOFF: u32 = 16;
6
7
/// A hashmap which only starts hashing after ignoring the first few inputs.
8
///
9
-/// This is used in type folders asin nearly all cases caching is not worth it
+/// This is used in type folders as in nearly all cases caching is not worth it
10
/// as nearly all folded types are tiny. However, there are very rare incredibly
11
/// large types for which caching is necessary to avoid hangs.
12
#[derive(Debug)]
0 commit comments