This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new c930016f1c Remove typo in docs serializers.rst (#31507)
c930016f1c is described below
commit c930016f1c0e99e97a4392a479420198ef2b4e14
Author: Daniele Cesarini <[email protected]>
AuthorDate: Sat May 27 21:22:23 2023 +0100
Remove typo in docs serializers.rst (#31507)
Co-authored-by: Tzu-ping Chung <[email protected]>
---
docs/apache-airflow/authoring-and-scheduling/serializers.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/authoring-and-scheduling/serializers.rst
b/docs/apache-airflow/authoring-and-scheduling/serializers.rst
index 7c3315d13a..9685184b83 100644
--- a/docs/apache-airflow/authoring-and-scheduling/serializers.rst
+++ b/docs/apache-airflow/authoring-and-scheduling/serializers.rst
@@ -26,7 +26,7 @@ and efficiency.
Serialization is a surprisingly hard job. Python out of the box only has
support for serialization of primitives,
like ``str`` and ``int`` and it loops over iterables. When things become more
complex, custom serialization is required.
-Airflow out of the box supports three ways of custom serialization. Primitives
are are returned as is, without
+Airflow out of the box supports three ways of custom serialization. Primitives
are returned as is, without
additional encoding, e.g. a ``str`` remains a ``str``. When it is not a
primitive (or iterable thereof) Airflow
looks for a registered serializer and deserializer in the namespace of
``airflow.serialization.serializers``.
If not found it will look in the class for a ``serialize()`` method or in case
of deserialization a