summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/js/lib.deno.shared_globals.d.ts2
-rw-r--r--cli/js/lib.deno.unstable.d.ts2
-rw-r--r--cli/tsc.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/lib.deno.shared_globals.d.ts b/cli/js/lib.deno.shared_globals.d.ts
index 8f3160e5d..e98f233ab 100644
--- a/cli/js/lib.deno.shared_globals.d.ts
+++ b/cli/js/lib.deno.shared_globals.d.ts
@@ -862,7 +862,7 @@ interface Request extends Body {
readonly integrity: string;
/**
* Returns a boolean indicating whether or not request is for a history
- * navigation (a.k.a. back-foward navigation).
+ * navigation (a.k.a. back-forward navigation).
*/
readonly isHistoryNavigation: boolean;
/**
diff --git a/cli/js/lib.deno.unstable.d.ts b/cli/js/lib.deno.unstable.d.ts
index 10587d3df..fc6d844b7 100644
--- a/cli/js/lib.deno.unstable.d.ts
+++ b/cli/js/lib.deno.unstable.d.ts
@@ -270,7 +270,7 @@ declare namespace Deno {
/** **UNSTABLE**: new API, yet to be vetted.
*
- * Open and initalize a plugin.
+ * Open and initialize a plugin.
*
* const rid = Deno.openPlugin("./path/to/some/plugin.so");
* const opId = Deno.core.ops()["some_op"];
diff --git a/cli/tsc.rs b/cli/tsc.rs
index ba898b456..737279ab5 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -410,7 +410,7 @@ impl TsCompiler {
deno_fs::write_file(out_file_, output_bytes, 0o666)?;
// TODO(bartlomieju): add "humanFileSize" method
- eprintln!("{} bytes emmited.", output_len);
+ eprintln!("{} bytes emitted.", output_len);
} else {
println!("{}", output_string);
}