diff --git a/library/core/src/option.rs b/library/core/src/option.rs index de1628f83ade8..bcba18a4a3e0a 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -80,11 +80,13 @@ //! * [`Box`] //! * `&U` //! * `&mut U` -//! * `fn`, `extern "C" fn` +//! * `fn`, `extern "C" fn`[^extern_fn] //! * [`num::NonZero*`] //! * [`ptr::NonNull`] //! * `#[repr(transparent)]` struct around one of the types in this list. //! +//! [^extern_fn]: this remains true for any other ABI: `extern "abi" fn` (_e.g._, `extern "system" fn`) +//! //! [`Box`]: ../../std/boxed/struct.Box.html //! [`num::NonZero*`]: crate::num //! [`ptr::NonNull`]: crate::ptr::NonNull