about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThe8472 <git@infinite-source.de>2019-11-15 21:01:13 +0100
committerThe8472 <git@infinite-source.de>2020-09-03 20:59:07 +0200
commitf904d0339a1e3f83fd99fe3d780cd07dac6dd11d (patch)
treedfa4334b7e81b6c1db351723aa821401c0e9e39b
parent328a75f766ed51aea6787c19c5df8f3e36183849 (diff)
downloadrust-f904d0339a1e3f83fd99fe3d780cd07dac6dd11d.tar.gz
rust-f904d0339a1e3f83fd99fe3d780cd07dac6dd11d.zip
fix doc link
-rw-r--r--library/core/src/iter/adapters/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/iter/adapters/mod.rs b/library/core/src/iter/adapters/mod.rs
index 7a48026a847..7149bb1db05 100644
--- a/library/core/src/iter/adapters/mod.rs
+++ b/library/core/src/iter/adapters/mod.rs
@@ -85,7 +85,7 @@ pub unsafe trait SourceIter {
     /// and side-effects of the pipeline stages from affecting or relying on that storage.
     ///
     /// [`TrustedRandomAccess`]: trait.TrustedRandomAccess.html
-    /// [`next`]: trait.Iterator.html#method.next
+    /// [`next()`]: trait.Iterator.html#method.next
     fn as_inner(&mut self) -> &mut Self::Source;
 }