Remove unintended link

Since `#[link_section]` is enclosed in braces, it was being confused with a link during docs compilation.
This commit is contained in:
Houtamelo 2024-11-02 04:09:17 -03:00 committed by GitHub
parent ef972a3466
commit 102fac7af6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@
//! This apparently translates to any callbacks in the ".CRT$XLB" section //! This apparently translates to any callbacks in the ".CRT$XLB" section
//! being run on certain events. //! being run on certain events.
//! //!
//! So after all that, we use the compiler's #[link_section] feature to place //! So after all that, we use the compiler's `#[link_section]` feature to place
//! a callback pointer into the magic section so it ends up being called. //! a callback pointer into the magic section so it ends up being called.
//! //!
//! # What's up with this callback? //! # What's up with this callback?