From f7c6a6b2d09fe6fa2cdb40a1e3a1ba52f751dbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=B9=E0=A4=BF=E0=A4=AE=E0=A4=BE=E0=A4=82=E0=A4=B6?= =?UTF-8?q?=E0=A5=81?= Date: Tue, 29 Jul 2025 23:23:44 +0530 Subject: [PATCH] [ty] fix a typo (#19621) Co-authored-by: Alex Waygood --- crates/ty_python_semantic/src/types/infer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)>);