Skip to content

Backporting docs fixes from 5 to 4.4. #824

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ context of the impersonated user. For this, the user for which the

.. Note::

The server or all servers of the cluster need to support impersonation when.
The server or all servers of the cluster need to support impersonation.
Otherwise, the driver will raise :py:exc:`.ConfigurationError`
as soon as it encounters a server that does not.

Expand Down Expand Up @@ -848,11 +848,6 @@ Record

.. autoclass:: neo4j.Record()

A :class:`neo4j.Record` is an immutable ordered collection of key-value
pairs. It is generally closer to a :py:class:`namedtuple` than to an
:py:class:`OrderedDict` inasmuch as iteration of the collection will
yield values rather than keys.

.. describe:: Record(iterable)

Create a new record based on an dictionary-like iterable.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def stop(self):
def watch(*logger_names, level=DEBUG, out=stderr):
"""Quick wrapper for using :class:`.Watcher`.

Create a Wathcer with the given configuration, enable watching and return
Create a Watcher with the given configuration, enable watching and return
it.

Example::
Expand Down
2 changes: 1 addition & 1 deletion neo4j/work/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def run(self, query, parameters=None, **kwparameters):

def last_bookmark(self):
"""Return the bookmark received following the last completed transaction.
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.

:returns: :class:`neo4j.Bookmark` object
"""
Expand Down