diff options
| author | Tsukasa OI <floss_rust@irq.a4lg.com> | 2025-03-21 05:51:01 +0000 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2025-03-24 23:27:46 +0000 |
| commit | 5feb3c989e8da5850b299427d9d072ff93b7c902 (patch) | |
| tree | 6e7d91acfced7aa745b3e1cc1cdd2bfc25001a4b /library/stdarch/crates/std_detect/src | |
| parent | be20f62a204605d798b858ce7f9b32f52f3eab08 (diff) | |
| download | rust-5feb3c989e8da5850b299427d9d072ff93b7c902.tar.gz rust-5feb3c989e8da5850b299427d9d072ff93b7c902.zip | |
resolve `clippy::doc_lazy_continuation`
This commit adds indentation as suggested by the Clippy warning.
Diffstat (limited to 'library/stdarch/crates/std_detect/src')
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs b/library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs index 79720a0dee0..45418c4e622 100644 --- a/library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs +++ b/library/stdarch/crates/std_detect/src/detect/os/linux/auxvec.rs @@ -45,9 +45,9 @@ pub(crate) struct AuxVec { /// There is no perfect way of reading the auxiliary vector. /// /// - If the `std_detect_dlsym_getauxval` cargo feature is enabled, this will use -/// `getauxval` if its linked to the binary, and otherwise proceed to a fallback implementation. -/// When `std_detect_dlsym_getauxval` is disabled, this will assume that `getauxval` is -/// linked to the binary - if that is not the case the behavior is undefined. +/// `getauxval` if its linked to the binary, and otherwise proceed to a fallback implementation. +/// When `std_detect_dlsym_getauxval` is disabled, this will assume that `getauxval` is +/// linked to the binary - if that is not the case the behavior is undefined. /// - Otherwise, if the `std_detect_file_io` cargo feature is enabled, it will /// try to read `/proc/self/auxv`. /// - If that fails, this function returns an error. |
