]> git.lizzy.rs Git - rust.git/commitdiff
Fix count usize link typo in docs
authorGil Cottle <redcape@users.noreply.github.com>
Mon, 19 Feb 2018 20:51:48 +0000 (20:51 +0000)
committerGitHub <noreply@github.com>
Mon, 19 Feb 2018 20:51:48 +0000 (20:51 +0000)
src/libcore/iter/iterator.rs

index 33adb3f49dd0d6de94a7acd26096c659386ab52a..c1a0518cd2288c836cddf0bed40ac8f0f745e5f6 100644 (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
     ///