Update `ScriptBuf::with_capacity` docs
Document that `ScriptBuf::with_capacity` may overallocate.
This commit is contained in:
parent
afde8499ac
commit
e492f94289
|
@ -62,7 +62,7 @@ impl ScriptBuf {
|
||||||
Script::from_boxed_bytes(self.into_bytes().into_boxed_slice())
|
Script::from_boxed_bytes(self.into_bytes().into_boxed_slice())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Constructs a new empty script with pre-allocated capacity.
|
/// Constructs a new empty script with at least the specified capacity.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn with_capacity(capacity: usize) -> Self {
|
pub fn with_capacity(capacity: usize) -> Self {
|
||||||
ScriptBuf::from_bytes(Vec::with_capacity(capacity))
|
ScriptBuf::from_bytes(Vec::with_capacity(capacity))
|
||||||
|
|
Loading…
Reference in New Issue