about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorFlorian Bartels <Florian.Bartels@elektrobit.com>2022-10-06 08:52:36 +0200
committerFlorian Bartels <Florian.Bartels@elektrobit.com>2022-10-06 09:55:32 +0200
commit9a97cc8ca5f863cacf39c9aaa4ca6ad872bc8172 (patch)
treeac09f36d5678bceba536f755e5aea97491bc64bf /library/std/src
parent56503460c88844a61fbf47cc6702e206355b0a2b (diff)
downloadrust-9a97cc8ca5f863cacf39c9aaa4ca6ad872bc8172.tar.gz
rust-9a97cc8ca5f863cacf39c9aaa4ca6ad872bc8172.zip
Fix whitespace
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/panicking.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/panicking.rs b/library/std/src/panicking.rs
index cd4d41fe123..d4976a469cc 100644
--- a/library/std/src/panicking.rs
+++ b/library/std/src/panicking.rs
@@ -309,10 +309,10 @@ pub mod panic_count {
     // records whether panic::always_abort() has been called.  This can only be
     // set, never cleared.
     // panic::always_abort() is usually called to prevent memory allocations done by
-    // the panic handling in the child created by `libc::fork`. 
+    // the panic handling in the child created by `libc::fork`.
     // Memory allocations performed in  a child created with `libc::fork` are undefined
     // behavior in most operating systems.
-    // Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory 
+    // Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory
     // allocation. Only GLOBAL_PANIC_COUNT can be accessed in this situation. This is
     // sufficient because a child process will always have exactly one thread only.
     // See also #85261 for details.