[ty] fix a typo (#19621)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
हिमांशु 2025-07-29 23:23:44 +05:30 committed by GitHub
parent 656273bf3d
commit f7c6a6b2d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10905,8 +10905,8 @@ fn contains_string_literal(expr: &ast::Expr) -> bool {
/// Map based on a `Vec`. It doesn't enforce
/// uniqueness on insertion. Instead, it relies on the caller
/// that elements are uniuqe. For example, the way we visit definitions
/// in the `TypeInference` builder make already implicitly guarantees that each definition
/// that elements are unique. For example, the way we visit definitions
/// in the `TypeInference` builder already implicitly guarantees that each definition
/// is only visited once.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
struct VecMap<K, V>(Vec<(K, V)>);