Skip to content

Commit

Permalink
docs: Fix some typos in comments
Browse files Browse the repository at this point in the history
Signed-off-by: findmyhappy <findhappy@sohu.com>
  • Loading branch information
findmyhappy committed Apr 25, 2024
1 parent 5294885 commit bdba70d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/lsp/tsc.rs
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion ext/net/tcp.rs
Expand Up @@ -7,7 +7,7 @@ use socket2::Domain;
use socket2::Protocol;
use socket2::Type;

/// Our per-process `Connections`. We can use this to find an existant listener for
/// Our per-process `Connections`. We can use this to find an existent listener for
/// a given local address and clone its socket for us to listen on in our thread.
static CONNS: std::sync::OnceLock<std::sync::Mutex<Connections>> =
std::sync::OnceLock::new();
Expand Down
2 changes: 1 addition & 1 deletion ext/webgpu/01_webgpu.js
Expand Up @@ -193,7 +193,7 @@ function assertDeviceMatch(
const resourceDevice = assertDevice(resource, prefix, resourceContext);
if (resourceDevice.rid !== self.rid) {
throw new DOMException(
`${prefix}: ${resourceContext} belongs to a diffent device than ${selfContext}.`,
`${prefix}: ${resourceContext} belongs to a different device than ${selfContext}.`,
"OperationError",
);
}
Expand Down
2 changes: 1 addition & 1 deletion tools/copyright_checker.js
Expand Up @@ -71,7 +71,7 @@ export async function checkCopyright() {
!fileText.startsWith(C_STYLE_COPYRIGHT_LINE)
) {
let trimmedText = fileText;
// Attempt to trim accceptable lines
// Attempt to trim acceptable lines
while (
ACCEPTABLE_LINES.test(trimmedText) &&
!trimmedText.startsWith(C_STYLE_COPYRIGHT_LINE)
Expand Down

0 comments on commit bdba70d

Please sign in to comment.