diff options
| author | Akhilesh Singhania <akhi3030@gmail.com> | 2022-09-09 11:30:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-09 11:30:40 +0200 |
| commit | 1933b74dbdd598edd3e54fcbf1d8b236ed5e82fc (patch) | |
| tree | a60c7397bdd1f142889af08a17ed308a05a41305 /library/std/src | |
| parent | 4a09adf99fff9b009ff517b9cf5bfce363130e16 (diff) | |
| download | rust-1933b74dbdd598edd3e54fcbf1d8b236ed5e82fc.tar.gz rust-1933b74dbdd598edd3e54fcbf1d8b236ed5e82fc.zip | |
doc: fix minor typo
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index a17185b6f70..ceea6986e33 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -116,7 +116,7 @@ //! Threads are able to have associated names for identification purposes. By default, spawned //! threads are unnamed. To specify a name for a thread, build the thread with [`Builder`] and pass //! the desired thread name to [`Builder::name`]. To retrieve the thread name from within the -//! thread, use [`Thread::name`]. A couple examples of where the name of a thread gets used: +//! thread, use [`Thread::name`]. A couple of examples where the name of a thread gets used: //! //! * If a panic occurs in a named thread, the thread name will be printed in the panic message. //! * The thread name is provided to the OS where applicable (e.g., `pthread_setname_np` in |
