Rephrase "cross-platform" to "cross-target"

This commit is contained in:
Jan Van Bruggen 2022-09-06 15:10:33 -06:00
parent 4625a0a869
commit 2f0df1d64d
No known key found for this signature in database
GPG key ID: FE2A4E38E0FA6134
2 changed files with 3 additions and 3 deletions

View file

@ -31,6 +31,6 @@ jobs:
- name: execute tests with --release
run: nix develop -c cargo test --locked --release
# we run the llvm wasm tests only on this machine because it is fast and wasm should be cross-platform
# we run the llvm wasm tests only on this machine because it is fast and wasm should be cross-target
- name: execute llvm wasm tests with --release
run: nix develop -c cargo test-gen-llvm-wasm --locked --release

View file

@ -365,7 +365,7 @@ pub fn examples_dir(dir_name: &str) -> PathBuf {
// Descend into examples/{dir_name}
path.push("examples");
path.extend(dir_name.split("/")); // Make slashes cross-platform
path.extend(dir_name.split("/")); // Make slashes cross-target
path
}
@ -388,7 +388,7 @@ pub fn fixtures_dir(dir_name: &str) -> PathBuf {
path.push("cli");
path.push("tests");
path.push("fixtures");
path.extend(dir_name.split("/")); // Make slashes cross-platform
path.extend(dir_name.split("/")); // Make slashes cross-target
path
}