From cc2a2bcea71217ddfc2a90500018430b38851902 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Fri, 7 Oct 2022 14:05:08 +0200 Subject: [PATCH 1/3] API Docs: fix typo in `begin_transaction` docstring. --- neo4j/_sync/work/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo4j/_sync/work/session.py b/neo4j/_sync/work/session.py index 67ed84e0a..2edc67d66 100644 --- a/neo4j/_sync/work/session.py +++ b/neo4j/_sync/work/session.py @@ -410,7 +410,7 @@ def begin_transaction( At most one transaction may exist in a session at any point in time. To maintain multiple concurrent transactions, use multiple concurrent sessions. - Note: For auto-transaction (Session.run) this will trigger an consume for the current result. + Note: For auto-transaction (Session.run) this will trigger a consume for the current result. :param metadata: a dictionary with metadata. From 5edee73d0df800dd24ccad49661ca8cdd6872b0d Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Mon, 10 Oct 2022 16:41:32 +0200 Subject: [PATCH 2/3] Revert "API Docs: fix typo in `begin_transaction` docstring." This reverts commit d515843da61132fefdf577afcdafe6cef2668f53. --- neo4j/_sync/work/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo4j/_sync/work/session.py b/neo4j/_sync/work/session.py index 2edc67d66..67ed84e0a 100644 --- a/neo4j/_sync/work/session.py +++ b/neo4j/_sync/work/session.py @@ -410,7 +410,7 @@ def begin_transaction( At most one transaction may exist in a session at any point in time. To maintain multiple concurrent transactions, use multiple concurrent sessions. - Note: For auto-transaction (Session.run) this will trigger a consume for the current result. + Note: For auto-transaction (Session.run) this will trigger an consume for the current result. :param metadata: a dictionary with metadata. From 356896444637b99da4f6ad7fc9b635f7bebf3741 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Mon, 10 Oct 2022 16:41:53 +0200 Subject: [PATCH 3/3] API Docs: fix typo in begin_transaction docstring --- neo4j/_async/work/session.py | 2 +- neo4j/_sync/work/session.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/_async/work/session.py b/neo4j/_async/work/session.py index d4cb0a2d4..217963d99 100644 --- a/neo4j/_async/work/session.py +++ b/neo4j/_async/work/session.py @@ -410,7 +410,7 @@ async def begin_transaction( At most one transaction may exist in a session at any point in time. To maintain multiple concurrent transactions, use multiple concurrent sessions. - Note: For auto-transaction (AsyncSession.run) this will trigger an consume for the current result. + Note: For auto-transaction (AsyncSession.run) this will trigger a consume for the current result. :param metadata: a dictionary with metadata. diff --git a/neo4j/_sync/work/session.py b/neo4j/_sync/work/session.py index 67ed84e0a..2edc67d66 100644 --- a/neo4j/_sync/work/session.py +++ b/neo4j/_sync/work/session.py @@ -410,7 +410,7 @@ def begin_transaction( At most one transaction may exist in a session at any point in time. To maintain multiple concurrent transactions, use multiple concurrent sessions. - Note: For auto-transaction (Session.run) this will trigger an consume for the current result. + Note: For auto-transaction (Session.run) this will trigger a consume for the current result. :param metadata: a dictionary with metadata.