Skip to content

Commit

Permalink
Minor doc formatting fix (#17704)
Browse files Browse the repository at this point in the history
Just a minor doc formatting fix to remove space
  • Loading branch information
kaxil authored Aug 19, 2021
1 parent b6c20a8 commit d5a6dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/apache-airflow/concepts/dags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ For example, here is a DAG that uses a ``for`` loop to define some Tasks::
with DAG("loop_example") as dag:

first = DummyOperator(task_id="first")
last = DummyOperator( task_id="last")
last = DummyOperator(task_id="last")

options = ["branch_a", "branch_b", "branch_c", "branch_d"]
for option in options:
Expand Down

0 comments on commit d5a6dc7

Please sign in to comment.