From Jason Turner

[thread.thread.this]

Diff to HTML by rtfpessoa

tmp/tmpbwnzj3fw/{from.md → to.md} RENAMED
@@ -15,13 +15,13 @@ namespace std::this_thread {
15
  ``` cpp
16
  thread::id this_thread::get_id() noexcept;
17
  ```
18
 
19
  *Returns:* An object of type `thread::id` that uniquely identifies the
20
- current thread of execution. No other thread of execution has this id
21
- and this thread of execution always has this id. The object returned
22
- does not compare equal to a default constructed `thread::id`.
23
 
24
  ``` cpp
25
  void this_thread::yield() noexcept;
26
  ```
27
 
 
15
  ``` cpp
16
  thread::id this_thread::get_id() noexcept;
17
  ```
18
 
19
  *Returns:* An object of type `thread::id` that uniquely identifies the
20
+ current thread of execution. Every invocation from this thread of
21
+ execution returns the same value. The object returned does not compare
22
+ equal to a default-constructed `thread::id`.
23
 
24
  ``` cpp
25
  void this_thread::yield() noexcept;
26
  ```
27