Rearrange Vec::from_raw_parts{,_in}
doc argument order to match code argument order
This commit is contained in:
parent
b79db437dc
commit
a1b93e8fed
1 changed files with 2 additions and 2 deletions
|
@ -481,7 +481,7 @@ impl<T> Vec<T> {
|
||||||
Self::with_capacity_in(capacity, Global)
|
Self::with_capacity_in(capacity, Global)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a `Vec<T>` directly from a pointer, a capacity, and a length.
|
/// Creates a `Vec<T>` directly from a pointer, a length, and a capacity.
|
||||||
///
|
///
|
||||||
/// # Safety
|
/// # Safety
|
||||||
///
|
///
|
||||||
|
@ -672,7 +672,7 @@ impl<T, A: Allocator> Vec<T, A> {
|
||||||
Vec { buf: RawVec::with_capacity_in(capacity, alloc), len: 0 }
|
Vec { buf: RawVec::with_capacity_in(capacity, alloc), len: 0 }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a `Vec<T, A>` directly from a pointer, a capacity, a length,
|
/// Creates a `Vec<T, A>` directly from a pointer, a length, a capacity,
|
||||||
/// and an allocator.
|
/// and an allocator.
|
||||||
///
|
///
|
||||||
/// # Safety
|
/// # Safety
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue