From 6f3c0ad59ea5cce78cc2bfb9140c64264ba765e4 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Wed, 11 Oct 2017 23:48:34 +0200 Subject: [PATCH] README: remove duplicated words --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 4d0ce85b..8887e5eb 100644 --- a/README.rst +++ b/README.rst @@ -133,7 +133,7 @@ Even though the ``Pendulum`` class is a subclass of ``datetime`` there are some it can't replace the native class directly. Here is a list (non-exhaustive) of the reported cases with a possible solution, if any: -* ``sqlite3`` will use the the ``type()`` function to determine the type of the object by default. To work around it you can register a new adapter: +* ``sqlite3`` will use the ``type()`` function to determine the type of the object by default. To work around it you can register a new adapter: .. code-block:: python @@ -142,7 +142,7 @@ a possible solution, if any: register_adapter(Pendulum, lambda val: val.isoformat(' ')) -* ``mysqlclient`` (former ``MySQLdb``) and ``PyMySQL`` will use the the ``type()`` function to determine the type of the object by default. To work around it you can register a new adapter: +* ``mysqlclient`` (former ``MySQLdb``) and ``PyMySQL`` will use the ``type()`` function to determine the type of the object by default. To work around it you can register a new adapter: .. code-block:: python