Skip to content

Commit

Permalink
Fixed some minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmarlow committed Feb 1, 2016
1 parent 2b10ba4 commit 599e358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ at first) is that this Airflow Python script is really
just a configuration file specifying the DAG's structure as code.
The actual tasks defined here will run in a different context from
the context of this script. Different tasks run on different workers
at different point it time, which means this script cannot be directly
to cross communicate between tasks for instance. Note that for this
at different points in time, which means that this script cannot be used
to cross communicate between tasks. Note that for this
purpose we have a more advanced feature called ``XCom``.

People sometimes think of the DAG definition file as a place where they
can do some actual data processing, that is not the case at all!
can do some actual data processing - that is not the case at all!
The script's purpose is to define a DAG object. It needs to evaluate
quickly (seconds, not minutes) since the scheduler will execute it
periodically to reflect the changes if any.
Expand Down Expand Up @@ -420,7 +420,7 @@ running against it should get it to get triggered and run every day.

Here's a few things you might want to do next:

* Take an in-depth tour of the UI, click all the things!
* Take an in-depth tour of the UI - click all the things!
* Keep reading the docs! Especially the sections on:

* Command line interface
Expand Down

0 comments on commit 599e358

Please sign in to comment.