diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/flags.rs | 4 | ||||
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 4 | ||||
-rw-r--r-- | cli/js/lib.deno.unstable.d.ts | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index ef3f75e23..15902a3c2 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -184,7 +184,7 @@ static ENV_VARIABLES_HELP: &str = "ENVIRONMENT VARIABLES: static DENO_HELP: &str = "A secure JavaScript and TypeScript runtime -Docs: https://deno.land/std/manual.md +Docs: https://deno.land/manual Modules: https://deno.land/std/ https://deno.land/x/ Bugs: https://github.com/denoland/deno/issues @@ -1194,7 +1194,7 @@ fn importmap_arg<'a, 'b>() -> Arg<'a, 'b> { .long_help( "UNSTABLE: Load import map file -Docs: https://deno.land/std/manual.md#import-maps +Docs: https://deno.land/manual/linking_to_external_code/import_maps Specification: https://wicg.github.io/import-maps/ Examples: https://github.com/WICG/import-maps#the-import-map", ) diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 9acdd7c1a..f73a1fdda 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1638,9 +1638,9 @@ declare namespace Deno { bytesReceived: number; } - /** Receive metrics from the privileged side of Deno. This is primarily used + /** Receive metrics from the privileged side of Deno. This is primarily used * in the development of Deno. 'Ops', also called 'bindings', are the go-between - * between Deno Javascript and Deno Rust. + * between Deno JavaScript and Deno Rust. * * > console.table(Deno.metrics()) * ┌─────────────────────────┬────────┐ diff --git a/cli/js/lib.deno.unstable.d.ts b/cli/js/lib.deno.unstable.d.ts index d34d86636..d27a3da9e 100644 --- a/cli/js/lib.deno.unstable.d.ts +++ b/cli/js/lib.deno.unstable.d.ts @@ -652,7 +652,7 @@ declare namespace Deno { /** **UNSTABLE**: new API, yet to be vetted. * * `bundle()` is part the compiler API. A full description of this functionality - * can be found in the [manual](https://deno.land/std/manual.md#denobundle). + * can be found in the [manual](https://deno.land/manual/runtime/compiler_apis#denobundle). * * Takes a root module name, and optionally a record set of sources. Resolves * with a single JavaScript string (and bundle diagnostics if issues arise with |