mirror of https://github.com/rust-lang/rust.git
auto merge of #14025 : tbrooks8/rust/big_uint_doc, r=alexcrichton
I changed the documentation for the BigUint to reflection the deprecation of ~[T] in favor of Vec<T>.
This commit is contained in:
commit
ab369c4353
|
@ -74,7 +74,7 @@ pub mod BigDigit {
|
|||
/**
|
||||
A big unsigned integer type.
|
||||
|
||||
A `BigUint`-typed value `BigUint { data: ~[a, b, c] }` represents a number
|
||||
A `BigUint`-typed value `BigUint { data: vec!(a, b, c) }` represents a number
|
||||
`(a + b * BigDigit::base + c * BigDigit::base^2)`.
|
||||
*/
|
||||
#[deriving(Clone)]
|
||||
|
|
Loading…
Reference in New Issue