docs: fix typos (#19118)

This commit is contained in:
Lenni 2023-05-16 14:30:16 +02:00 committed by GitHub
parent 78fbc3f3f6
commit 1c74b41855
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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()
);

View file

@ -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()
);