Skip to content

Commit de891aa

Browse files
committed
docs(Makefile): fix comment typos
Signed-off-by: Vaughn Dice <[email protected]>
1 parent 1edc4f0 commit de891aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,22 +55,22 @@ test-unit:
5555
test-crate:
5656
$(LOG_LEVEL_VAR) cargo test -p $(crate) --no-fail-fast -- --skip integration_tests --skip runtime_tests --nocapture
5757

58-
# Run the runtime tests without the tests that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
58+
# Run the runtime tests without the tests that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
5959
.PHONY: test-runtime
6060
test-runtime:
6161
cargo test --release runtime_tests --no-default-features --no-fail-fast -- --nocapture
6262

63-
# Run all of the runtime tests including those that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
63+
# Run all of the runtime tests including those that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
6464
.PHONY: test-runtime-full
6565
test-runtime-full:
6666
cargo test --release runtime_tests --no-default-features --features extern-dependencies-tests --no-fail-fast -- --nocapture
6767

68-
# Run the integration tests without the tests that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
68+
# Run the integration tests without the tests that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
6969
.PHONY: test-integration
7070
test-integration: test-runtime
7171
cargo test --release integration_tests --no-default-features --no-fail-fast -- --nocapture
7272

73-
# Run all of the integration tests including those that use some sort of assumed external depedency (e.g., Docker, a language toolchain, etc.)
73+
# Run all of the integration tests including those that use some sort of assumed external dependency (e.g., Docker, a language toolchain, etc.)
7474
.PHONY: test-integration-full
7575
test-integration-full: test-runtime-full
7676
cargo test --release integration_tests --no-default-features --features extern-dependencies-tests --no-fail-fast -- --nocapture

0 commit comments

Comments
 (0)