diff --git a/crates/ty_python_semantic/src/types/infer.rs b/crates/ty_python_semantic/src/types/infer.rs index 0c45e07804..88221cf858 100644 --- a/crates/ty_python_semantic/src/types/infer.rs +++ b/crates/ty_python_semantic/src/types/infer.rs @@ -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(Vec<(K, V)>);