Skip to content

Commit 4c6e978

Browse files
author
Achim Brandt
committed
fixed typo
1 parent 47297f8 commit 4c6e978

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/com/arangodb/ArangoDriver.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2487,13 +2487,16 @@ public String executeAqlQueryJSON(String query, Map<String, Object> bindVars, Aq
24872487
* a map containing all bind variables,
24882488
* @param aqlQueryOptions
24892489
* AQL query options
2490+
* @param classDocumentEntity
2491+
* the class the expected class is wrapped in (the class has to
2492+
* extend DocumentEntity)
24902493
* @param clazz
24912494
* the expected class, the result from the server request is
24922495
* deserialized to an instance of this class.
24932496
* @return DocumentCursorResult<T, S>
24942497
* @throws ArangoException
24952498
*/
2496-
public <T, S extends DocumentEntity<T>> DocumentCursorResult<T, S> executeAqlQueryWithDocumentCursorResutl(
2499+
public <T, S extends DocumentEntity<T>> DocumentCursorResult<T, S> executeAqlQueryWithDocumentCursorResult(
24972500
String query,
24982501
Map<String, Object> bindVars,
24992502
AqlQueryOptions aqlQueryOptions,

0 commit comments

Comments
 (0)