From 78c4f1a46ce74f13a99447207f8cdf0fcfc7df95 Mon Sep 17 00:00:00 2001 From: Razzi Abuissa Date: Tue, 8 Jun 2021 05:53:35 -0700 Subject: [PATCH] Fix a couple typos in the docs (#16321) Co-authored-by: Razzi Abuissa --- BREEZE.rst | 2 +- CI.rst | 2 +- airflow/example_dags/tutorial.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BREEZE.rst b/BREEZE.rst index 8af8ec2155c0a..092f3d2d39a3e 100644 --- a/BREEZE.rst +++ b/BREEZE.rst @@ -381,7 +381,7 @@ Managing CI environment: * Execute arbitrary docker-compose command with ``breeze docker-compose`` command * Push docker images with ``breeze push-image`` command (require committers rights to push images) -You can optionally reset the Airflow metada database if specified as extra ``--db-reset`` flag and for CI image +You can optionally reset the Airflow metadata database if specified as extra ``--db-reset`` flag and for CI image you can also start integrations (separate Docker images) if specified as extra ``--integration`` flags. You can also chose which backend database should be used with ``--backend`` flag and python version with ``--python`` flag. diff --git a/CI.rst b/CI.rst index 769d8d851f811..2177e7713d702 100644 --- a/CI.rst +++ b/CI.rst @@ -811,7 +811,7 @@ The image names follow the patterns: * - Python version (Major + Minor). For "main" and "v2-*-test" should be in ["3.6", "3.7", "3.8"]. For v1-10-test it should be in ["2.7", "3.5", "3.6". "3.7", "3.8"]. * - for images that get merged to "main", "v2-*-test" of "v1-10-test", or built as part of a - pull request the images are tagged with the (full lenght) commit SHA of that particular branch. For pull + pull request the images are tagged with the (full length) commit SHA of that particular branch. For pull requests the SHA used is the tip of the pull request branch. Reproducing CI Runs locally diff --git a/airflow/example_dags/tutorial.py b/airflow/example_dags/tutorial.py index 6d0b5224cd739..433c20ecb4df2 100644 --- a/airflow/example_dags/tutorial.py +++ b/airflow/example_dags/tutorial.py @@ -100,7 +100,7 @@ """ ) - dag.doc_md = __doc__ # providing that you have a docstring at the beggining of the DAG + dag.doc_md = __doc__ # providing that you have a docstring at the beginning of the DAG dag.doc_md = """ This is a documentation placed anywhere """ # otherwise, type it like this