Rollup merge of #36966 - ollie27:rustdoc_mut_ptr_impl, r=alexcrichton
rustdoc: Fix missing *mut T impl `impl<T> *mut T` is currently missing from https://doc.rust-lang.org/nightly/std/primitive.pointer.html and this adds it back.
This commit is contained in:
commit
4c100260e0
1 changed files with 2 additions and 2 deletions
|
@ -301,8 +301,8 @@ pub fn build_impls<'a, 'tcx>(cx: &DocContext,
|
|||
tcx.lang_items.char_impl(),
|
||||
tcx.lang_items.str_impl(),
|
||||
tcx.lang_items.slice_impl(),
|
||||
tcx.lang_items.slice_impl(),
|
||||
tcx.lang_items.const_ptr_impl()
|
||||
tcx.lang_items.const_ptr_impl(),
|
||||
tcx.lang_items.mut_ptr_impl(),
|
||||
];
|
||||
|
||||
for def_id in primitive_impls.iter().filter_map(|&def_id| def_id) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue