diff --git a/driver/src/main/java/org/neo4j/driver/TransactionConfig.java b/driver/src/main/java/org/neo4j/driver/TransactionConfig.java index 896fec2962..201a262af5 100644 --- a/driver/src/main/java/org/neo4j/driver/TransactionConfig.java +++ b/driver/src/main/java/org/neo4j/driver/TransactionConfig.java @@ -174,9 +174,9 @@ private Builder() {} * Set the transaction timeout. Transactions that execute longer than the configured timeout will be terminated by the database. * See also {@link #withDefaultTimeout}. *
- * This functionality allows to limit query/transaction execution time. - * The Specified timeout overrides the default timeout configured in the database using the {@code db.transaction.timeout} setting ({@code dbms.transaction.timeout} before Neo4j 5.0). - * Values higher than {@code db.transaction.timeout} will be ignored and will fall back to the default for server versions 4.2 to including 5.2. + * This functionality allows user code to limit query/transaction execution time. + * The specified timeout overrides the default timeout configured in the database using the {@code db.transaction.timeout} setting ({@code dbms.transaction.timeout} before Neo4j 5.0). + * Values higher than {@code db.transaction.timeout} will be ignored and will fall back to the default for server versions between 4.2 and 5.2 (inclusive). *
* The provided value should not represent a negative duration. * {@link Duration#ZERO} will make the transaction execute indefinitely.