Rephrase CPU-related "platform"/"host" to "target"/"your machine"

This commit is contained in:
Jan Van Bruggen 2022-09-06 14:56:05 -06:00
parent 5717f698d8
commit 4625a0a869
No known key found for this signature in database
GPG key ID: FE2A4E38E0FA6134
8 changed files with 14 additions and 14 deletions

View file

@ -523,7 +523,7 @@ fn list_of_2_field_records() {
#[test]
fn three_element_record() {
// if this tests turns out to fail on 32-bit platforms, look at jit_to_ast_help
// if this tests turns out to fail on 32-bit targets, look at jit_to_ast_help
expect_success(
"{ a: 1, b: 2, c: 3 }",
"{ a: 1, b: 2, c: 3 } : { a : Num *, b : Num *, c : Num * }",
@ -532,7 +532,7 @@ fn three_element_record() {
#[test]
fn four_element_record() {
// if this tests turns out to fail on 32-bit platforms, look at jit_to_ast_help
// if this tests turns out to fail on 32-bit targets, look at jit_to_ast_help
expect_success(
"{ a: 1, b: 2, c: 3, d: 4 }",
"{ a: 1, b: 2, c: 3, d: 4 } : { a : Num *, b : Num *, c : Num *, d : Num * }",