about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-06-05 06:00:54 +0000
committerTrevor Gross <tmgross@umich.edu>2025-06-08 02:36:58 +0000
commitf43bb2ac994e356d6e3abbee6f4eb1609a7bd0bd (patch)
tree3c5fb57aa26b5f41a9d6f8e0832ccdddaad18dbd
parentcc3e57147e7cf5933a2bfa4b92b5a3a5eb424997 (diff)
downloadrust-f43bb2ac994e356d6e3abbee6f4eb1609a7bd0bd.tar.gz
rust-f43bb2ac994e356d6e3abbee6f4eb1609a7bd0bd.zip
compiler-builtins: Fix a `rustdoc::bare-urls` error
-rw-r--r--library/compiler-builtins/compiler-builtins/src/aarch64_linux.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/compiler-builtins/compiler-builtins/src/aarch64_linux.rs b/library/compiler-builtins/compiler-builtins/src/aarch64_linux.rs
index e238d0237eb..226121237e8 100644
--- a/library/compiler-builtins/compiler-builtins/src/aarch64_linux.rs
+++ b/library/compiler-builtins/compiler-builtins/src/aarch64_linux.rs
@@ -4,7 +4,7 @@
 //! To avoid breaking backwards compat, C toolchains introduced a concept of "outlined atomics",
 //! where atomic operations call into the compiler runtime to dispatch between two depending on
 //! which is supported on the current CPU.
-//! See https://community.arm.com/arm-community-blogs/b/tools-software-ides-blog/posts/making-the-most-of-the-arm-architecture-in-gcc-10#:~:text=out%20of%20line%20atomics for more discussion.
+//! See <https://community.arm.com/arm-community-blogs/b/tools-software-ides-blog/posts/making-the-most-of-the-arm-architecture-in-gcc-10#:~:text=out%20of%20line%20atomics> for more discussion.
 //!
 //! Currently we only support LL/SC, because LSE requires `getauxval` from libc in order to do runtime detection.
 //! Use the `compiler-rt` intrinsics if you want LSE support.