about summary refs log tree commit diff
path: root/library/core/src/panic
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-05-15 17:12:44 +0200
committerGitHub <noreply@github.com>2023-05-15 17:12:44 +0200
commit1063548a1a2ff954087eeeb8b6598c28cafa1e22 (patch)
tree96ca36881dd70d498fc11fd20104d14046b0303c /library/core/src/panic
parentfc30207b1662a7159498bd3f476604e360809670 (diff)
parent1190c91a61b056fcdebebd0770745f2a5649c71f (diff)
Rollup merge of #108356 - gftea:master, r=workingjubilee
improve doc test for UnsafeCell::raw_get

improve docs of public API `UnsafeCell::raw_get`
Diffstat (limited to 'library/core/src/panic')
-rw-r--r--library/core/src/panic/panic_info.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/panic/panic_info.rs b/library/core/src/panic/panic_info.rs
index 06fbe083ca1..5576adde84b 100644
--- a/library/core/src/panic/panic_info.rs
+++ b/library/core/src/panic/panic_info.rs
@@ -134,7 +134,7 @@ impl<'a> PanicInfo<'a> {
     /// whose ABI does not support unwinding.
     ///
     /// It is safe for a panic handler to unwind even when this function returns
-    /// true, however this will simply cause the panic handler to be called
+    /// false, however this will simply cause the panic handler to be called
     /// again.
     #[must_use]
     #[unstable(feature = "panic_can_unwind", issue = "92988")]