diff options
author | findmyhappy <167661649+findmyhappy@users.noreply.github.com> | 2024-04-30 15:59:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 17:59:56 +1000 |
commit | ce4a7773ccb606c51c824881e37043bc937c94f2 (patch) | |
tree | 571f819ff238c3b2e43072caa81bb740df1d5073 /cli/lsp/tsc.rs | |
parent | 850331164138233ea86c9a5032d99ad29c79efe1 (diff) |
docs: fix some typos in comments (#23520)
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 06f618e1f..28127c6d7 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -3176,7 +3176,7 @@ fn get_parameters_from_parts(parts: &[SymbolDisplayPart]) -> Vec<String> { break; } } else if part.text == "..." && paren_count == 1 { - // Found rest parmeter. Do not fill in any further arguments. + // Found rest parameter. Do not fill in any further arguments. break; } else if part.text == "{" { brace_count += 1; |