@@ -92,7 +92,7 @@ public interface ResultCursor extends RecordAccessor, Resource
9292
9393 /**
9494 * Return the first record in the stream. Fail with an exception if the stream is empty
95- * or if this cursor has already been used to move "into" the stream .
95+ * or if this cursor has already been used to move past the first record .
9696 *
9797 * @return the first record in the stream
9898 * @throws NoSuchRecordException if there is no first record or the cursor has been used already
@@ -102,7 +102,7 @@ public interface ResultCursor extends RecordAccessor, Resource
102102
103103 /**
104104 * Return a field value from the first record in the stream. Fail with an exception if the stream is empty
105- * or if this cursor has already been used to move "into" the stream .
105+ * or if this cursor has already been used to move past the first record .
106106 *
107107 * @param fieldName the name of the field to return from the first record in the stream
108108 * @return the specified field from the first record in the stream
@@ -113,7 +113,7 @@ public interface ResultCursor extends RecordAccessor, Resource
113113
114114 /**
115115 * Return a field value from the first record in the stream. Fail with an exception if the stream is empty
116- * or if this cursor has already been used to move "into" the stream .
116+ * or if this cursor has already been used to move past the first record .
117117 *
118118 * @param index the index of the field to return from the first record in the stream
119119 * @return the specified field from the first record in the stream
@@ -124,7 +124,7 @@ public interface ResultCursor extends RecordAccessor, Resource
124124
125125 /**
126126 * Move to the first record and return an immutable copy of it, failing if there is not exactly
127- * one record in the stream, or if this cursor has already been used to move "into" the stream .
127+ * one record in the stream, or if this cursor has already been used to move past the first record .
128128 *
129129 * @return the first and only record in the stream
130130 * @throws NoSuchRecordException if there is not exactly one record in the stream, or if the cursor has been used already
@@ -133,7 +133,7 @@ public interface ResultCursor extends RecordAccessor, Resource
133133
134134 /**
135135 * Move to the first record and return a field value from it, failing if there is not exactly
136- * one record in the stream, or if this cursor has already been used to move "into" the stream .
136+ * one record in the stream, or if this cursor has already been used to move past the first record .
137137 *
138138 * @param fieldName the name of the field to return from the first and only record in the stream
139139 * @return the value of the specified field of the first and only record in the stream
@@ -143,7 +143,7 @@ public interface ResultCursor extends RecordAccessor, Resource
143143
144144 /**
145145 * Move to the first record and return a field value from it, failing if there is not exactly
146- * one record in the stream, or if this cursor has already been used to move "into" the stream .
146+ * one record in the stream, or if this cursor has already been used to move past the first record .
147147 *
148148 * @param index the index of the field to return from the first and only record in the stream
149149 * @return the value of the specified field of the first and only record in the stream
0 commit comments