@@ -51,14 +51,15 @@ class Query:
5151        the transaction timeout in seconds. 
5252        Transactions that execute longer than the configured timeout will 
5353        be terminated by the database. 
54-         This functionality allows to limit query/transaction execution  
55-         time. 
54+         This functionality allows user code  to limit query/transaction 
55+         execution  time. 
5656        The Specified timeout overrides the default timeout configured in 
5757        the database using the ``db.transaction.timeout`` setting 
5858        (``dbms.transaction.timeout`` before Neo4j 5.0). 
5959        Values higher than ``db.transaction.timeout`` will be ignored and 
60-         will fall back to the default for server versions 4.2 to including 
61-         5.2. The value should not represent a negative duration. 
60+         will fall back to the default for server versions between 4.2 and 
61+         5.2 (inclusive). 
62+         The value should not represent a negative duration. 
6263        A ``0`` duration will make the transaction execute indefinitely. 
6364        :data:`None` will use the default timeout configured on the server. 
6465    :type timeout: float | None 
@@ -114,14 +115,15 @@ def count_people_tx(tx):
114115        the transaction timeout in seconds. 
115116        Transactions that execute longer than the configured timeout will 
116117        be terminated by the database. 
117-         This functionality allows to limit query/transaction execution  
118-         time. 
118+         This functionality allows user code  to limit query/transaction 
119+         execution  time. 
119120        The Specified timeout overrides the default timeout configured in 
120121        the database using the ``db.transaction.timeout`` setting 
121122        (``dbms.transaction.timeout`` before Neo4j 5.0). 
122123        Values higher than ``db.transaction.timeout`` will be ignored and 
123-         will fall back to the default for server versions 4.2 to including 
124-         5.2. The value should not represent a negative duration. 
124+         will fall back to the default for server versions between 4.2 and 
125+         5.2 (inclusive). 
126+         The value should not represent a negative duration. 
125127        A ``0`` duration will make the transaction execute indefinitely. 
126128        :data:`None` will use the default timeout configured on the server. 
127129    :type timeout: float | None 
0 commit comments