Rollup merge of #25227 - jooert:bitvec-doc-fix, r=alexcrichton

I forgot this in #24890.
This commit is contained in:
Manish Goregaokar 2015-05-09 18:40:19 +05:30
commit 511a8d47eb

View File

@ -644,6 +644,10 @@ impl BitVec {
/// Splits the `BitVec` into two at the given bit,
/// retaining the first half in-place and returning the second one.
///
/// # Panics
///
/// Panics if `at` is out of bounds.
///
/// # Examples
///
/// ```