diff options
author | Lenni <guentherhanslphdyt@gmail.com> | 2023-05-16 14:30:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 14:30:16 +0200 |
commit | 1c74b41855b85c9ec2ee1d83ac0f6b04e1461788 (patch) | |
tree | cf27d458ce40df4de998aa2c26c7d216d5900382 | |
parent | 78fbc3f3f695610083d07a55ef2a116e0bf04a10 (diff) |
docs: fix typos (#19118)
-rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 2 | ||||
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 2 | ||||
-rw-r--r-- | cli/tools/compile.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 44c670d27..e6e5a41f0 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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. diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index ac088ca90..971fc80ba 100644 --- a/cli/tests/integration/compile_tests.rs +++ b/cli/tests/integration/compile_tests.rs @@ -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() ); diff --git a/cli/tools/compile.rs b/cli/tools/compile.rs index f10a2d025..a77845334 100644 --- a/cli/tools/compile.rs +++ b/cli/tools/compile.rs @@ -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() ); |