diff options
| author | Tim Neumann <mail@timnn.me> | 2017-09-17 13:19:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-17 13:19:12 +0200 |
| commit | bbb89863a9aef8b60d7bd4cc534d26b874f90ef9 (patch) | |
| tree | 59710055ef9e12e3ccbc22172845760571de49ed /src/libstd | |
| parent | 80d7e761852febed1db548b9b4f332c4081120e8 (diff) | |
| parent | 5ff7064330db0598a7cde9b88412cd09a0c3a305 (diff) | |
| download | rust-bbb89863a9aef8b60d7bd4cc534d26b874f90ef9.tar.gz rust-bbb89863a9aef8b60d7bd4cc534d26b874f90ef9.zip | |
Rollup merge of #44622 - frewsxcv:frewsxcv-invalid-link, r=QuietMisdreavus
Fix incorrect `into_inner` link in docs. Fixes https://github.com/rust-lang/rust/issues/42373.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/sys_common/poison.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys_common/poison.rs b/src/libstd/sys_common/poison.rs index 0127a9eb759..3c61593acc5 100644 --- a/src/libstd/sys_common/poison.rs +++ b/src/libstd/sys_common/poison.rs @@ -98,7 +98,7 @@ pub enum TryLockError<T> { /// /// [`Ok`]: ../../std/result/enum.Result.html#variant.Ok /// [`Err`]: ../../std/result/enum.Result.html#variant.Err -/// [`into_inner`]: ../../std/sync/struct.Mutex.html#method.into_inner +/// [`into_inner`]: ../../std/sync/struct.PoisonError.html#method.into_inner #[stable(feature = "rust1", since = "1.0.0")] pub type LockResult<Guard> = Result<Guard, PoisonError<Guard>>; |
