Skip to content

Commit f824979

Browse files
committed
Add VecMap and VecSet
1 parent c8a0aa1 commit f824979

2 files changed

Lines changed: 164 additions & 101 deletions

File tree

crates/ty_python_semantic/src/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ pub fn check_types(db: &dyn Db, file: File) -> Vec<Diagnostic> {
104104
for scope_id in index.scope_ids() {
105105
let result = infer_scope_types(db, scope_id);
106106

107-
if let Some(scope_diagnotics) = result.diagnostics() {
108-
diagnostics.extend(scope_diagnotics);
107+
if let Some(scope_diagnostics) = result.diagnostics() {
108+
diagnostics.extend(scope_diagnostics);
109109
}
110110
}
111111

0 commit comments

Comments
 (0)