diff options
| author | bors <bors@rust-lang.org> | 2017-12-09 20:10:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-12-09 20:10:29 +0000 |
| commit | 6fa53b00e7450060a3af9b1ef63169db37e589c2 (patch) | |
| tree | fd2f0d2bbf0c603bd6593708a555018d6533a1c2 /src | |
| parent | 6537fd184eff31220eda42712a13f48684e8463a (diff) | |
| parent | e53a848d324f8d6014c7541f836b5d202580a9fb (diff) | |
| download | rust-6fa53b00e7450060a3af9b1ef63169db37e589c2.tar.gz rust-6fa53b00e7450060a3af9b1ef63169db37e589c2.zip | |
Auto merge of #46603 - ollie27:rustdoc_slice_u8, r=GuillaumeGomez
rustdoc: Include `impl [u8]` in the docs The impl was added in #44042 but wasn't visible in the docs.
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/clean/inline.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/clean/inline.rs b/src/librustdoc/clean/inline.rs index 85c1796ecef..16b5216d58d 100644 --- a/src/librustdoc/clean/inline.rs +++ b/src/librustdoc/clean/inline.rs @@ -269,6 +269,7 @@ pub fn build_impls(cx: &DocContext, did: DefId) -> Vec<clean::Item> { lang_items.char_impl(), lang_items.str_impl(), lang_items.slice_impl(), + lang_items.slice_u8_impl(), lang_items.const_ptr_impl(), lang_items.mut_ptr_impl(), ]; |
