From f898e61d108e4eeab0d366b0624aef0ff13938ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Fischer?= Date: Mon, 1 Jun 2026 10:18:52 -0400 Subject: [PATCH] Correct description of panic.rs The foremost description of this module was: > Panic support in the standard library. This commit changes that to: > Panic support in core. --- library/core/src/panic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/panic.rs b/library/core/src/panic.rs index cf07504466808..939d3df26ba24 100644 --- a/library/core/src/panic.rs +++ b/library/core/src/panic.rs @@ -1,4 +1,4 @@ -//! Panic support in the standard library. +//! Panic support in core. #![stable(feature = "core_panic_info", since = "1.41.0")]