mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-11-24 21:19:37 +00:00
chore: Fix typos throughout code base (automatic)
This is all the typos that `typos` is confident can just be fixed automatically, minus the overrides added to the manifest for the false positives I found.
This commit is contained in:
parent
3eee445dab
commit
6f4aba4aa8
28 changed files with 55 additions and 55 deletions
|
|
@ -489,11 +489,11 @@ impl<'a> ExprWorker<'a> {
|
|||
Decl::spread(s.span()).into()
|
||||
};
|
||||
|
||||
let spreaded = Pattern::Expr(this.check(s.expr())).into();
|
||||
let spread = Pattern::Expr(this.check(s.expr())).into();
|
||||
if inputs.is_empty() {
|
||||
spread_left = Some((decl.clone(), spreaded));
|
||||
spread_left = Some((decl.clone(), spread));
|
||||
} else {
|
||||
spread_right = Some((decl.clone(), spreaded));
|
||||
spread_right = Some((decl.clone(), spread));
|
||||
}
|
||||
|
||||
this.resolve_as(Decl::as_def(&decl, None));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue