mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
docs: fix typos (#19118)
This commit is contained in:
parent
78fbc3f3f6
commit
1c74b41855
3 changed files with 3 additions and 3 deletions
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
Before submitting a PR, please read http://deno.land/manual/contributing
|
||||
Before submitting a PR, please read https://deno.com/manual/contributing
|
||||
|
||||
1. Give the PR a descriptive title.
|
||||
|
||||
|
|
|
@ -325,7 +325,7 @@ fn compile_with_conflict_file_exists_error() {
|
|||
concat!(
|
||||
"Could not compile to file '{}' because the file already exists ",
|
||||
"and cannot be overwritten. Please delete the existing file or ",
|
||||
"use the `--output <file-path` flag to provide an alternative name."
|
||||
"use the `--output <file-path>` flag to provide an alternative name."
|
||||
),
|
||||
exe.display()
|
||||
);
|
||||
|
|
|
@ -114,7 +114,7 @@ fn validate_output_path(output_path: &Path) -> Result<(), AnyError> {
|
|||
concat!(
|
||||
"Could not compile to file '{}' because the file already exists ",
|
||||
"and cannot be overwritten. Please delete the existing file or ",
|
||||
"use the `--output <file-path` flag to provide an alternative name."
|
||||
"use the `--output <file-path>` flag to provide an alternative name."
|
||||
),
|
||||
output_path.display()
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue