You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2023/09/15 05:35:44 UTC

[airflow] branch main updated: Fix spelling errors in readme and license files (#34383)

This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new decac54722 Fix spelling errors in readme and license files (#34383)
decac54722 is described below

commit decac54722fd3fc20633541190ccb97edcc5daa9
Author: yanfangli <63...@users.noreply.github.com>
AuthorDate: Fri Sep 15 13:35:37 2023 +0800

    Fix spelling errors in readme and license files (#34383)
---
 airflow/_vendor/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow/_vendor/README.md b/airflow/_vendor/README.md
index e708f1e507..e76d8beea3 100644
--- a/airflow/_vendor/README.md
+++ b/airflow/_vendor/README.md
@@ -10,7 +10,7 @@ the `_vendor` package.
 All Vendored libraries must follow these rules:
 
 1. Vendored libraries must be pure Python--no compiling (so that we do not have to release multi-platform airflow packages on PyPI).
-2. Source code for the libary is included in this directory.
+2. Source code for the library is included in this directory.
 3. License must be included in this repo and in the [LICENSE](../../LICENSE) file and in the
    [licenses](../../licenses) folder.
 4. Requirements of the library become requirements of airflow core.
@@ -19,7 +19,7 @@ All Vendored libraries must follow these rules:
 7. Apply the fixes necessary to use the vendored library as separate commits - each package separately,
    so that they can be cherry-picked later if we upgrade the vendored package. Changes to airflow code to
    use the vendored packages should be applied as separate commits/PRs.
-8. The `_vendor` packages should be excluded from any refactorings, static checks and automated fixes.
+8. The `_vendor` packages should be excluded from any refactoring, static checks and automated fixes.
 
 ## Adding and upgrading a vendored package
 
@@ -28,7 +28,7 @@ Way to vendor a library or update a version:
 1. Update ``vendor.txt`` with the library, version, and SHA256 (`pypi` provides hashes as of recently)
 2. Remove all old files and directories of the old version.
 3. Replace them with new files (only replace relevant python packages:move LICENSE )
-   * move licence files to [licenses](../../licenses) folder
+   * move license files to [licenses](../../licenses) folder
    * remove README and any other supporting files (they can be found in PyPI)
    * make sure to add requirements from setup.py to airflow's setup.py with appropriate comment stating
      why the requirements are added and when they should be removed