diff --git a/docs/source/api.rst b/docs/source/api.rst index 77ba106ba..46b828b0f 100644 --- a/docs/source/api.rst +++ b/docs/source/api.rst @@ -364,7 +364,8 @@ Closing a driver will immediately shut down all connections in the pool. with a single underscore. This is to avoid collisions with the keyword configuration parameters of this method. If you need to pass such a parameter, use the ``parameters_`` parameter instead. - These take precedence over parameters passed as ``parameters_``. + Parameters passed as kwargs take precedence over those passed in + ``parameters_``. :type kwargs: typing.Any :returns: the result of the ``result_transformer`` diff --git a/docs/source/async_api.rst b/docs/source/async_api.rst index c29d1227c..c3593c34b 100644 --- a/docs/source/async_api.rst +++ b/docs/source/async_api.rst @@ -354,7 +354,8 @@ Closing a driver will immediately shut down all connections in the pool. with a single underscore. This is to avoid collisions with the keyword configuration parameters of this method. If you need to pass such a parameter, use the ``parameters_`` parameter instead. - These take precedence over parameters passed as ``parameters_``. + Parameters passed as kwargs take precedence over those passed in + ``parameters_``. :type kwargs: typing.Any :returns: the result of the ``result_transformer`` diff --git a/src/neo4j/_async/driver.py b/src/neo4j/_async/driver.py index 072cc9589..efc1ec795 100644 --- a/src/neo4j/_async/driver.py +++ b/src/neo4j/_async/driver.py @@ -815,7 +815,8 @@ async def example(driver: neo4j.AsyncDriver) -> neo4j.Record:: with a single underscore. This is to avoid collisions with the keyword configuration parameters of this method. If you need to pass such a parameter, use the ``parameters_`` parameter instead. - These take precedence over parameters passed as ``parameters_``. + Parameters passed as kwargs take precedence over those passed in + ``parameters_``. :type kwargs: typing.Any :returns: the result of the ``result_transformer`` diff --git a/src/neo4j/_sync/driver.py b/src/neo4j/_sync/driver.py index 6238f9ca8..9145b9e64 100644 --- a/src/neo4j/_sync/driver.py +++ b/src/neo4j/_sync/driver.py @@ -814,7 +814,8 @@ def example(driver: neo4j.Driver) -> neo4j.Record:: with a single underscore. This is to avoid collisions with the keyword configuration parameters of this method. If you need to pass such a parameter, use the ``parameters_`` parameter instead. - These take precedence over parameters passed as ``parameters_``. + Parameters passed as kwargs take precedence over those passed in + ``parameters_``. :type kwargs: typing.Any :returns: the result of the ``result_transformer``