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:
bors 2014-05-09 00:51:35 -07:00
commit ab369c4353
1 changed files with 1 additions and 1 deletions

View File

@ -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)]