about summary refs log tree commit diff
path: root/compiler/rustc_span/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-10-31 13:25:46 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-11-02 17:22:44 +1100
commit1bcb6006ba450381be345481f5ffe2a9dc5dd6f1 (patch)
tree840a6ce1ac8f78a7d9a6cd18dadb0714d5b2870b /compiler/rustc_span/src
parentd76661bf2570bcac5a04b5b1a4362b941eeb4c08 (diff)
downloadrust-1bcb6006ba450381be345481f5ffe2a9dc5dd6f1.tar.gz
rust-1bcb6006ba450381be345481f5ffe2a9dc5dd6f1.zip
Fix some comments.
The comment just below the first one describes how the `impl !Send for
FatalError` makes it impossible to `panic!(FatalError)`.

And the second one should be `panic_any` instead of `panic!`.
Diffstat (limited to 'compiler/rustc_span/src')
-rw-r--r--compiler/rustc_span/src/fatal_error.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/rustc_span/src/fatal_error.rs b/compiler/rustc_span/src/fatal_error.rs
index fa84c486df5..8b4f77a0566 100644
--- a/compiler/rustc_span/src/fatal_error.rs
+++ b/compiler/rustc_span/src/fatal_error.rs
@@ -1,13 +1,11 @@
-/// Used as a return value to signify a fatal error occurred. (It is also
-/// used as the argument to panic at the moment, but that will eventually
-/// not be true.)
+/// Used as a return value to signify a fatal error occurred.
 #[derive(Copy, Clone, Debug)]
 #[must_use]
 pub struct FatalError;
 
 pub struct FatalErrorMarker;
 
-// Don't implement Send on FatalError. This makes it impossible to panic!(FatalError).
+// Don't implement Send on FatalError. This makes it impossible to `panic_any!(FatalError)`.
 // We don't want to invoke the panic handler and print a backtrace for fatal errors.
 impl !Send for FatalError {}