Skip to content

Commit 51f20ac

Browse files
committedJun 11, 2024
Fix invalid markdown/html.
1 parent d4b7304 commit 51f20ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/panicking.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! In core, panicking is always done with a message, resulting in a core::panic::PanicInfo
44
//! containing a fmt::Arguments. In std, however, panicking can be done with panic_any, which throws
5-
//! a Box<dyn Any> containing any type of value. Because of this, std::panic::PanicInfo is a
5+
//! a `Box<dyn Any>` containing any type of value. Because of this, std::panic::PanicInfo is a
66
//! different type, which contains a &dyn Any instead of a fmt::Arguments.
77
//! std's panic handler will convert the fmt::Arguments to a &dyn Any containing either a
88
//! &'static str or String containing the formatted message.

0 commit comments

Comments
 (0)