diff options
| author | bors <bors@rust-lang.org> | 2015-01-08 20:59:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-08 20:59:48 +0000 |
| commit | 6354d60ede5e2a7e60fa46f85243efd8dbe89711 (patch) | |
| tree | 70855c11c6def130b7e3467fbdd81243a5ea1120 | |
| parent | bc6e080df5b23fd538afef5452dcfd916c205b04 (diff) | |
| parent | 018730b39aa64404f757ca0350e0cb131384eaf2 (diff) | |
| download | rust-6354d60ede5e2a7e60fa46f85243efd8dbe89711.tar.gz rust-6354d60ede5e2a7e60fa46f85243efd8dbe89711.zip | |
Merge pull request #20766 from tsurai/patch-1
doc: Fix unresolved import in Bitv example Reviewed-by: alexcrichton
| -rw-r--r-- | src/libcollections/bit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/bit.rs b/src/libcollections/bit.rs index e922feff02b..c1b34c52fcc 100644 --- a/src/libcollections/bit.rs +++ b/src/libcollections/bit.rs @@ -134,7 +134,7 @@ static FALSE: bool = false; /// # Examples /// /// ```rust -/// use collections::Bitv; +/// use std::collections::Bitv; /// /// let mut bv = Bitv::from_elem(10, false); /// |
