Skip to content

Commit 0651abe

Browse files
committed
Fix whitespace
1 parent 74372ab commit 0651abe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/src/panicking.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ pub mod panic_count {
309309
// records whether panic::always_abort() has been called. This can only be
310310
// set, never cleared.
311311
// panic::always_abort() is usually called to prevent memory allocations done by
312-
// the panic handling in the child created by `libc::fork`.
312+
// the panic handling in the child created by `libc::fork`.
313313
// Memory allocations performed in a child created with `libc::fork` are undefined
314314
// behavior in most operating systems.
315-
// Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory
315+
// Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory
316316
// allocation. Only GLOBAL_PANIC_COUNT can be accessed in this situation. This is
317317
// sufficient because a child process will always have exactly one thread only.
318318
// See also #85261 for details.

0 commit comments

Comments
 (0)