Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit f8b1bd2

Browse files
committed
Fix invalid markdown/html.
1 parent 9ed8848 commit f8b1bd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/panicking.rs

Lines changed: 1 addition & 1 deletion
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)