Rollup merge of #48360 - redcape:redcape-count-doc-fix, r=cramertj

Fix count usize link typo in docs

The docs point to isize when the link should be going to usize instead. Fix the doc.
This commit is contained in:
Guillaume Gomez
2018-02-21 16:29:55 +01:00
committed by GitHub
+1 -1
View File
@@ -168,7 +168,7 @@ fn size_hint(&self) -> (usize, Option<usize>) { (0, None) }
/// This function might panic if the iterator has more than [`usize::MAX`]
/// elements.
///
/// [`usize::MAX`]: ../../std/isize/constant.MAX.html
/// [`usize::MAX`]: ../../std/usize/constant.MAX.html
///
/// # Examples
///