Rollup merge of #66360 - elichai:2019-11-vec-link, r=dtolnay

Fix link to Exten in Vec::set_len

Fixes #66354

Unrelated to this PR, I think we should stop using `../../std/MODULE` and replace it with `../MODULE` that way if you're looking at docs in `core` or `alloc` clicking at a link won't forward you to `std`.
This commit is contained in:
Yuki Okushi 2019-11-14 14:16:22 +09:00 committed by GitHub
commit 28c0e40b44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -861,7 +861,7 @@ pub fn as_mut_ptr(&mut self) -> *mut T {
///
/// [`truncate`]: #method.truncate
/// [`resize`]: #method.resize
/// [`extend`]: #method.extend-1
/// [`extend`]: ../../std/iter/trait.Extend.html#tymethod.extend
/// [`clear`]: #method.clear
///
/// # Safety