From 3f931515df876ac21760edc1c1c13b8cf351cf3d Mon Sep 17 00:00:00 2001 From: Gil Cottle Date: Mon, 19 Feb 2018 20:51:48 +0000 Subject: [PATCH] Fix count usize link typo in docs --- src/libcore/iter/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs index 33adb3f49dd0d..c1a0518cd2288 100644 --- a/src/libcore/iter/iterator.rs +++ b/src/libcore/iter/iterator.rs @@ -168,7 +168,7 @@ pub trait Iterator { /// 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 ///