From e26111c886ad93fce7e521354820c19b29cfe8a9 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Tue, 1 Nov 2022 17:39:18 +0100 Subject: [PATCH] Fix typo in `Result.to_df()` docstring. (#848) --- neo4j/_async/work/result.py | 2 +- neo4j/_sync/work/result.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neo4j/_async/work/result.py b/neo4j/_async/work/result.py index a2c08d0a7..95b53abe8 100644 --- a/neo4j/_async/work/result.py +++ b/neo4j/_async/work/result.py @@ -657,7 +657,7 @@ async def to_df( :const:`dict` keys and variable names that contain ``.`` or ``\`` will be escaped with a backslash (``\.`` and ``\\`` respectively). :param parse_dates: - If :const:`True`, columns that excluvively contain + If :const:`True`, columns that exclusively contain :class:`time.DateTime` objects, :class:`time.Date` objects, or :const:`None`, will be converted to :class:`pandas.Timestamp`. diff --git a/neo4j/_sync/work/result.py b/neo4j/_sync/work/result.py index 18d0279b5..ed6514cf9 100644 --- a/neo4j/_sync/work/result.py +++ b/neo4j/_sync/work/result.py @@ -657,7 +657,7 @@ def to_df( :const:`dict` keys and variable names that contain ``.`` or ``\`` will be escaped with a backslash (``\.`` and ``\\`` respectively). :param parse_dates: - If :const:`True`, columns that excluvively contain + If :const:`True`, columns that exclusively contain :class:`time.DateTime` objects, :class:`time.Date` objects, or :const:`None`, will be converted to :class:`pandas.Timestamp`.