Skip to content

Commit 9c9e8dc

Browse files
committed
Fix JavaDoc references to CursorIterable (#154)
1 parent 718f162 commit 9c9e8dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/lmdbjava/CursorIterable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ void setV(final T val) {
229229
}
230230

231231
/**
232-
* Represents the internal {@link CursorIterator} state.
232+
* Represents the internal {@link CursorIterable} state.
233233
*/
234234
enum State {
235235
REQUIRES_INITIAL_OP, REQUIRES_NEXT_OP, REQUIRES_ITERATOR_OP, RELEASED,

src/main/java/org/lmdbjava/Env.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ public Dbi<T> openDbi(final byte[] name, final DbiFlags... flags) {
301301
* If a custom comparator is specified, this comparator is called from LMDB
302302
* any time it needs to compare two keys. The comparator must be used any time
303303
* any time this database is opened, otherwise database corruption may occur.
304-
* The custom comparator will also be used whenever a {@link CursorIterator}
304+
* The custom comparator will also be used whenever a {@link CursorIterable}
305305
* is created from the returned {@link Dbi}. If a custom comparator is not
306306
* specified, LMDB's native default lexicographical order is used. The default
307307
* comparator is typically more efficient (as there is no need for the native

0 commit comments

Comments
 (0)