From cc37b8e2dd380208d5539ae010ffc957b075f60d Mon Sep 17 00:00:00 2001 From: Ramon de C Valle Date: Mon, 8 Apr 2024 20:20:56 +0200 Subject: [PATCH] Update compiler/rustc_sanitizers/src/cfi/mod.rs Co-authored-by: David Wood --- compiler/rustc_sanitizers/src/cfi/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/rustc_sanitizers/src/cfi/mod.rs b/compiler/rustc_sanitizers/src/cfi/mod.rs index 65dc895a80049..90dab5e0333a1 100644 --- a/compiler/rustc_sanitizers/src/cfi/mod.rs +++ b/compiler/rustc_sanitizers/src/cfi/mod.rs @@ -1,6 +1,6 @@ -/// LLVM Control Flow Integrity (CFI) and cross-language LLVM CFI support for the Rust compiler. -/// -/// For more information about LLVM CFI and cross-language LLVM CFI support for the Rust compiler, -/// see design document in the tracking issue #89653. +//! LLVM Control Flow Integrity (CFI) and cross-language LLVM CFI support for the Rust compiler. +//! +//! For more information about LLVM CFI and cross-language LLVM CFI support for the Rust compiler, +//! see design document in the tracking issue #89653. pub mod typeid; pub use crate::cfi::typeid::{typeid_for_fnabi, typeid_for_instance, TypeIdOptions};