From 607de236dcf50695a183fc082eef6dc1523e2af0 Mon Sep 17 00:00:00 2001 From: Lance Andersen Date: Sat, 29 Jun 2013 06:12:28 -0400 Subject: [PATCH] 8019286: Fix javadoc typo in ResultSet.next Reviewed-by: darcy, mchung --- jdk/src/share/classes/java/sql/ResultSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdk/src/share/classes/java/sql/ResultSet.java b/jdk/src/share/classes/java/sql/ResultSet.java index 9c912416308..ad954e89d1d 100644 --- a/jdk/src/share/classes/java/sql/ResultSet.java +++ b/jdk/src/share/classes/java/sql/ResultSet.java @@ -148,7 +148,7 @@ import java.io.InputStream; public interface ResultSet extends Wrapper, AutoCloseable { /** - * Moves the cursor froward one row from its current position. + * Moves the cursor forward one row from its current position. * A ResultSet cursor is initially positioned * before the first row; the first call to the method * next makes the first row the current row; the