diff options
| author | QuietMisdreavus <grey@quietmisdreavus.net> | 2017-08-21 20:48:03 -0500 |
|---|---|---|
| committer | QuietMisdreavus <grey@quietmisdreavus.net> | 2017-09-05 13:51:33 -0500 |
| commit | db09332b39193a75f1de60372bf60b22f06381db (patch) | |
| tree | 720f5e6d1a74f2f152e5565a04a2a66b605c3198 | |
| parent | bb6de3c9ce1681ff1246c21d2a2ec537f331e258 (diff) | |
| download | rust-db09332b39193a75f1de60372bf60b22f06381db.tar.gz rust-db09332b39193a75f1de60372bf60b22f06381db.zip | |
update `doc_masked` docs and tracking issue
| -rw-r--r-- | src/doc/unstable-book/src/language-features/doc-masked.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/doc-masked.md b/src/doc/unstable-book/src/language-features/doc-masked.md index 0d0a46ce9ee..5731afc8bc9 100644 --- a/src/doc/unstable-book/src/language-features/doc-masked.md +++ b/src/doc/unstable-book/src/language-features/doc-masked.md @@ -1,6 +1,6 @@ # `doc_masked` -The tracking issue for this feature is: [TODO](TODO) +The tracking issue for this feature is: [#44027] ----- @@ -16,7 +16,7 @@ of trait implementations. The specifics of the feature are as follows: 3. When listing types that implement a given trait, rustdoc ensures that types from masked crates are not emitted into the documentation. -This feature was introduced in PR [TODO](TODO) to ensure that compiler-internal and +This feature was introduced in PR [#44026] to ensure that compiler-internal and implementation-specific types and traits were not included in the standard library's documentation. Such types would introduce broken links into the documentation. @@ -35,3 +35,6 @@ pub trait MyMarker { } impl MyMarker for f32 { } impl MyMarker for f64 { } ``` + +[#44026]: https://github.com/rust-lang/rust/pull/44026 +[#44027]: https://github.com/rust-lang/rust/pull/44027 |
