8179891: JavaDoc for for..in is incorrect
Summary: Fixed javadoc typo error
Reviewed-by: sundar, hannesw, jlaskey
Contributed-by: srinivas.dama@oracle.com
--- a/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ForOfLoopTree.java Thu May 11 16:26:52 2017 +0000
+++ b/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ForOfLoopTree.java Fri May 12 12:12:37 2017 +0530
@@ -38,7 +38,7 @@
*/
public interface ForOfLoopTree extends LoopTree {
/**
- * The for..in left hand side expression.
+ * The for..of left hand side expression.
*
* @return the left hand side expression
*/
@@ -52,7 +52,7 @@
ExpressionTree getExpression();
/**
- * The statement contained in this for..in statement.
+ * The statement contained in this for..of statement.
*
* @return the statement
*/