This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new f943c5a Fix the docs for Transfer Operators (#13641)
f943c5a is described below
commit f943c5a1ceee815fc439a7932f93ae40d8475c1d
Author: Kaxil Naik <[email protected]>
AuthorDate: Tue Jan 12 19:16:04 2021 +0000
Fix the docs for Transfer Operators (#13641)
Currently instead of "S3 to GCS" it says "S3 to S3"
---
docs/exts/operators_and_hooks_ref-transfers.rst.jinja2 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/exts/operators_and_hooks_ref-transfers.rst.jinja2
b/docs/exts/operators_and_hooks_ref-transfers.rst.jinja2
index a7999eb..1f02232 100644
--- a/docs/exts/operators_and_hooks_ref-transfers.rst.jinja2
+++ b/docs/exts/operators_and_hooks_ref-transfers.rst.jinja2
@@ -17,7 +17,7 @@
under the License.
#}
{%- for item in items %}
-{% set title = item['source-integration-name'] + " to " +
item['source-integration-name'] %}
+{% set title = item['source-integration-name'] + " to " +
item['target-integration-name'] %}
{{ title }}
{{ header_separator * (title|length) }}
{# Force new line #}