Skip to content

Commit

Permalink
yikes
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Sep 27, 2024
1 parent 7bf456d commit f550e0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion compiler/rustc_infer/src/infer/resolve.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use rustc_data_structures::sso::SsoHashMap;
use rustc_middle::bug;
use rustc_middle::ty::fold::{FallibleTypeFolder, TypeFolder, TypeSuperFoldable};
use rustc_middle::ty::visit::TypeVisitableExt;
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_type_ir/src/data_structures/delayed_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const CACHE_CUTOFF: u32 = 16;

/// A hashmap which only starts hashing after ignoring the first few inputs.
///
/// 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
/// as nearly all folded types are tiny. However, there are very rare incredibly
/// large types for which caching is necessary to avoid hangs.
#[derive(Debug)]
Expand Down

0 comments on commit f550e0f

Please sign in to comment.