diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index cd7d4b6fd..7c33020c9 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -176,7 +176,7 @@ export class Config { /** * Specify the maximum time in milliseconds transactions are allowed to retry via - * {@link Session#executeRead} and {@link Session#executeWrite} functions. + * {@link Session#executeRead}, {@link Session#executeWrite}, and {@link Driver#executeQuery} functions. * * These functions will retry the given unit of work on `ServiceUnavailable`, `SessionExpired` and transient * errors with exponential backoff using an initial delay of 1 second. diff --git a/packages/neo4j-driver-deno/lib/core/types.ts b/packages/neo4j-driver-deno/lib/core/types.ts index 7d9d4c427..e97417efb 100644 --- a/packages/neo4j-driver-deno/lib/core/types.ts +++ b/packages/neo4j-driver-deno/lib/core/types.ts @@ -176,7 +176,7 @@ export class Config { /** * Specify the maximum time in milliseconds transactions are allowed to retry via - * {@link Session#executeRead} and {@link Session#executeWrite} functions. + * {@link Session#executeRead}, {@link Session#executeWrite}, and {@link Driver#executeQuery} functions. * * These functions will retry the given unit of work on `ServiceUnavailable`, `SessionExpired` and transient * errors with exponential backoff using an initial delay of 1 second.