Fix a few typos in CI messages and comments (#7357)

# Objective

Stumbled on some typos in our CI tool

## Solution

- Fix em
This commit is contained in:
Rob Parrett 2023-01-25 03:20:58 +00:00
parent 958a898b4a
commit f27e9b241d

View file

@ -145,13 +145,13 @@ fn main() {
// Build examples and check they compile
cmd!(sh, "cargo check --workspace --examples")
.run()
.expect("Please fix failing doc-tests in output above.");
.expect("Please fix compiler errors for examples in output above.");
}
if what_to_run.contains(Check::COMPILE_CHECK) {
// Build examples and check they compile
// Build bevy and check that it compiles
cmd!(sh, "cargo check --workspace")
.run()
.expect("Please fix failing doc-tests in output above.");
.expect("Please fix compiler errors in output above.");
}
}