From bac62b0d610728dd9123821084490c2fe0c3fe05 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Fri, 28 Oct 2022 15:28:15 +0200 Subject: [PATCH] Fix typo in `Result.to_df()` docstring. --- 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`.