Fix typo when referencing the rustc-abi field.

This commit is contained in:
Felix Packard
2025-02-20 15:46:05 +00:00
parent 176d4a7783
commit b1bf2e51d6
7 changed files with 7 additions and 7 deletions

View File

@@ -198,7 +198,7 @@ Cargo поддерживает различные целевые системы
"rustc-abi": "x86-softfloat"
```
As we want to use the `soft-float` feature, we also need to tell the Rust compiler `rustc` that we want to use the corresponding ABI. We can do that by setting the `x86-softfloat` field to `x86-softfloat`.
As we want to use the `soft-float` feature, we also need to tell the Rust compiler `rustc` that we want to use the corresponding ABI. We can do that by setting the `rustc-abi` field to `x86-softfloat`.
#### Соединяем все вместе