diff options
| author | Jonathan 'theJPster' Pallant <github@thejpster.org.uk> | 2025-09-12 20:45:34 +0100 |
|---|---|---|
| committer | Jonathan 'theJPster' Pallant <github@thejpster.org.uk> | 2025-09-12 20:45:34 +0100 |
| commit | 4d273c4d91fc31b02c345f0dadea4a0b751f0238 (patch) | |
| tree | 45107ce4e4a4abafe78f8adb2f0a311fde7857d0 | |
| parent | ec5375fc55802290738b710ae285e78244e141f5 (diff) | |
| download | rust-4d273c4d91fc31b02c345f0dadea4a0b751f0238.tar.gz rust-4d273c4d91fc31b02c345f0dadea4a0b751f0238.zip | |
Fix two typos spotted in review
| -rw-r--r-- | src/doc/rustc/src/platform-support/arm-linux.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/rustc/src/platform-support/arm-linux.md b/src/doc/rustc/src/platform-support/arm-linux.md index 5f320762e93..5f40743f3d0 100644 --- a/src/doc/rustc/src/platform-support/arm-linux.md +++ b/src/doc/rustc/src/platform-support/arm-linux.md @@ -108,7 +108,7 @@ running this code on. For example, running `eabihf` code on an `eabi` system will not work correctly. The `gnueabi` ABI component indicates support for using the GNU C Library -(glibc), and the Arm Embedded ABI (EABI). The EABI is a replacement of for the +(glibc), and the Arm Embedded ABI (EABI). The EABI is a replacement for the original ABI (now called the Old ABI or OABI), and it is the standard ABI for 32-bit Arm systems. With this ABI, function parameters that are `f32` or `f64` are passed as if they were integers, instead of being passed via in FPU @@ -128,9 +128,9 @@ depending on whether your distribution is using 'soft-float' (EABI) or The `musleabi` and `musleabihf` ABI components offer support for the [musl C library](https://musl.libc.org/). This C library can be used to create 'static -binaries' that have no run-time library requirements (a feature that that -glibc does not support). There are soft-float (`eabi`) and hard-float -(`eabihf`) variants, as per the `gnu*` targets above. +binaries' that have no run-time library requirements (a feature that glibc +does not support). There are soft-float (`eabi`) and hard-float (`eabihf`) +variants, as per the `gnu*` targets above. The `uclibceabi` and `uclibceabihf` ABI components are for the [uClibc-ng C library](https://uclibc-ng.org/). This is sometimes used in light-weight |
