You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/02/20 23:54:28 UTC

[airflow] branch master updated: Docs: Corrected code example description (#14339)

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 1b82c24  Docs: Corrected code example description (#14339)
1b82c24 is described below

commit 1b82c244c055517a5439f524018f0b9e961667d5
Author: Muhammad Taha Khan <m....@hotmail.com>
AuthorDate: Sun Feb 21 00:54:13 2021 +0100

    Docs: Corrected code example description (#14339)
    
    Changed the sentence:
    `Here is an example of creating and running a pipeline in Java with jar stored on GCS:`
    to
    `Here is an example of creating and running a pipeline in Java with jar stored on local file system:`
---
 docs/apache-airflow-providers-google/operators/cloud/dataflow.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow-providers-google/operators/cloud/dataflow.rst b/docs/apache-airflow-providers-google/operators/cloud/dataflow.rst
index 9f86bb9..723f518 100644
--- a/docs/apache-airflow-providers-google/operators/cloud/dataflow.rst
+++ b/docs/apache-airflow-providers-google/operators/cloud/dataflow.rst
@@ -91,7 +91,7 @@ Here is an example of creating and running a pipeline in Java with jar stored on
     :start-after: [START howto_operator_start_java_job_jar_on_gcs]
     :end-before: [END howto_operator_start_java_job_jar_on_gcs]
 
-Here is an example of creating and running a pipeline in Java with jar stored on GCS:
+Here is an example of creating and running a pipeline in Java with jar stored on local file system:
 
 .. exampleinclude:: /../../airflow/providers/google/cloud/example_dags/example_dataflow.py
     :language: python