8180137: fix broken link in java.lang.Iterable
authorsmarks
Fri, 12 May 2017 14:52:26 -0700
changeset 45141 99a3dd59f831
parent 45140 2901d2f1a6aa
child 45142 be2c212f16dd
8180137: fix broken link in java.lang.Iterable Reviewed-by: rriggs
jdk/src/java.base/share/classes/java/lang/Iterable.java
--- a/jdk/src/java.base/share/classes/java/lang/Iterable.java	Fri May 12 13:43:06 2017 -0700
+++ b/jdk/src/java.base/share/classes/java/lang/Iterable.java	Fri May 12 14:52:26 2017 -0700
@@ -31,16 +31,13 @@
 import java.util.function.Consumer;
 
 /**
- * Implementing this interface allows an object to be the target of
- * the "for-each loop" statement. See
- * <strong>
- * <a href="{@docRoot}/../technotes/guides/language/foreach.html">For-each Loop</a>
- * </strong>
+ * Implementing this interface allows an object to be the target of the enhanced
+ * {@code for} statement (sometimes called the "for-each loop" statement).
  *
  * @param <T> the type of elements returned by the iterator
  *
  * @since 1.5
- * @jls 14.14.2 The enhanced for statement
+ * @jls 14.14.2 The enhanced {@code for} statement
  */
 public interface Iterable<T> {
     /**