about summary refs log tree commit diff
path: root/library/panic_unwind/src
diff options
context:
space:
mode:
authorBrent Kerby <blkerby@gmail.com>2021-05-02 15:55:22 -0600
committerBrent Kerby <blkerby@gmail.com>2021-05-02 17:46:00 -0600
commit6679f5ceb1bd367050bb69b239d94d6213696336 (patch)
tree80d535ea84fcb2c8577be39a3d227d8799e53665 /library/panic_unwind/src
parente10cbc33c1fd2fcd446cab5cdcc57332d154721c (diff)
downloadrust-6679f5ceb1bd367050bb69b239d94d6213696336.tar.gz
rust-6679f5ceb1bd367050bb69b239d94d6213696336.zip
Change 'NULL' to 'null'
Diffstat (limited to 'library/panic_unwind/src')
-rw-r--r--library/panic_unwind/src/seh.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/panic_unwind/src/seh.rs b/library/panic_unwind/src/seh.rs
index 5597bbb93d2..58028d40576 100644
--- a/library/panic_unwind/src/seh.rs
+++ b/library/panic_unwind/src/seh.rs
@@ -316,7 +316,7 @@ pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
 }
 
 pub unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send> {
-    // A NULL payload here means that we got here from the catch (...) of
+    // A null payload here means that we got here from the catch (...) of
     // __rust_try. This happens when a non-Rust foreign exception is caught.
     if payload.is_null() {
         super::__rust_foreign_exception();