Skip to content

Commit

Permalink
Language tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltratt committed Dec 25, 2021
1 parent 8d8f699 commit d66a9e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -967,8 +967,8 @@ pub fn park_timeout(dur: Duration) {
///
/// A `ThreadId` is an opaque object that uniquely identifies each thread
/// created during the lifetime of a process. `ThreadId`s are guaranteed not to
/// be reused, even if a thread dies. `ThreadId`s are under the control of
/// Rust's standard library and there may not be any relationship between
/// be reused, even when a thread terminates. `ThreadId`s are under the control
/// of Rust's standard library and there may not be any relationship between
/// `ThreadId` and the underlying platform's notion of a thread identifier --
/// the two concepts cannot, therefore, be used interchangeably. A `ThreadId`
/// can be retrieved from the [`id`] method on a [`Thread`].
Expand Down

0 comments on commit d66a9e1

Please sign in to comment.