Skip to content

Commit ab369c4

Browse files
committed
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>.
2 parents fcf25ae + 12339f9 commit ab369c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libnum/bigint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub mod BigDigit {
7474
/**
7575
A big unsigned integer type.
7676
77-
A `BigUint`-typed value `BigUint { data: ~[a, b, c] }` represents a number
77+
A `BigUint`-typed value `BigUint { data: vec!(a, b, c) }` represents a number
7878
`(a + b * BigDigit::base + c * BigDigit::base^2)`.
7979
*/
8080
#[deriving(Clone)]

0 commit comments

Comments
 (0)