Skip to content

Commit

Permalink
Fix (TM) to (R) in Airflow repository (#40783)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Jul 15, 2024
1 parent 8ce3dc8 commit d699087
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/apache-airflow/core-concepts/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Core Concepts
=============================

Here you can find detailed documentation about each one of the core concepts of Apache Airflow and how to use them, as well as a high-level :doc:`architectural overview <overview>`.
Here you can find detailed documentation about each one of the core concepts of Apache Airflow® and how to use them, as well as a high-level :doc:`architectural overview <overview>`.

**Architecture**

Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
What is Airflow™?
=========================================

`Apache Airflow <https://github.com/apache/airflow>`_ is an open-source platform for developing, scheduling,
`Apache Airflow® <https://github.com/apache/airflow>`_ is an open-source platform for developing, scheduling,
and monitoring batch-oriented workflows. Airflow's extensible Python framework enables you to build workflows
connecting with virtually any technology. A web interface helps manage the state of your workflows. Airflow is
deployable in many ways, varying from a single process on your laptop to a distributed setup to support even
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Setting up the database
-----------------------

Apache Airflow requires a database. If you're just experimenting and learning Airflow, you can stick with the
Apache Airflow® requires a database. If you're just experimenting and learning Airflow, you can stick with the
default SQLite option. If you don't want to use SQLite, then take a look at
:doc:`/howto/set-up-database` to setup a different database.

Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow/installation/supported-versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Supported versions
Version Life Cycle
``````````````````

Apache Airflow version life cycle:
Apache Airflow® version life cycle:

.. This table is automatically updated by pre-commit scripts/ci/pre_commit/supported_versions.py
.. Beginning of auto-generated table
Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow/installation/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ when you choose to upgrade airflow via their UI.
How to upgrade
==============

Reinstall Apache Airflow, specifying the desired new version.
Reinstall Apache Airflow®, specifying the desired new version.

To upgrade a bootstrapped local instance, you can set the ``AIRFLOW_VERSION`` environment variable to the
intended version prior to rerunning the installation command. Upgrade incrementally by patch version: e.g.,
Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow/security/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Security
This section of the documentation covers security-related topics.

Make sure to get familiar with the :doc:`Airflow Security Model </security/security_model>` if you want to understand
the different user types of Apache Airflow, what they have access to, and the role Deployment Managers have in deploying Airflow in a secure way.
the different user types of Apache Airflow®, what they have access to, and the role Deployment Managers have in deploying Airflow in a secure way.

Also, if you want to understand how Airflow releases security patches and what to expect from them,
head over to :doc:`Releasing security patches </security/releasing_security_patches>`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Releasing security patches
==========================

Apache Airflow uses a consistent and predictable approach for releasing security patches - both for
Apache Airflow® uses a consistent and predictable approach for releasing security patches - both for
the Apache Airflow package and Apache Airflow providers (security patches in providers are treated
separately from security patches in Airflow core package).

Expand Down
4 changes: 2 additions & 2 deletions tests/providers/slack/transfers/test_sql_to_slack_webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def test_partial_deprecated_slack_conn_id(self, slack_conn_id, slack_webhook_con
slack_conn_id=slack_conn_id,
slack_webhook_conn_id=slack_webhook_conn_id,
sql_conn_id="fake-sql-conn-id",
slack_message="<https://github.com/apache/airflow|Apache Airflow>",
slack_message="<https://github.com/apache/airflow|Apache Airflow®>",
).expand(sql=["SELECT 1", "SELECT 2"])

dr = dag_maker.create_dagrun()
Expand All @@ -304,7 +304,7 @@ def test_partial_ambiguous_slack_connections(self, dag_maker, session):
slack_conn_id="slack_conn_id",
slack_webhook_conn_id="slack_webhook_conn_id",
sql_conn_id="fake-sql-conn-id",
slack_message="<https://github.com/apache/airflow|Apache Airflow>",
slack_message="<https://github.com/apache/airflow|Apache Airflow®>",
).expand(sql=["SELECT 1", "SELECT 2"])

dr = dag_maker.create_dagrun(session=session)
Expand Down
4 changes: 2 additions & 2 deletions tests/system/providers/slack/example_slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
task_id="slack_post_text",
channel=SLACK_CHANNEL,
text=(
"Apache Airflow is an open-source platform for developing, "
"Apache Airflow® is an open-source platform for developing, "
"scheduling, and monitoring batch-oriented workflows."
),
)
Expand All @@ -57,7 +57,7 @@
"text": {
"type": "mrkdwn",
"text": (
"*<https://github.com/apache/airflow|Apache Airflow>* "
"*<https://github.com/apache/airflow|Apache Airflow®>* "
"is an open-source platform for developing, scheduling, "
"and monitoring batch-oriented workflows."
),
Expand Down
4 changes: 2 additions & 2 deletions tests/system/providers/slack/example_slack_webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
task_id="slack_webhook_send_text",
slack_webhook_conn_id=SLACK_WEBHOOK_CONN_ID,
message=(
"Apache Airflow is an open-source platform for developing, "
"Apache Airflow® is an open-source platform for developing, "
"scheduling, and monitoring batch-oriented workflows."
),
)
Expand All @@ -55,7 +55,7 @@
"text": {
"type": "mrkdwn",
"text": (
"*<https://github.com/apache/airflow|Apache Airflow>* "
"*<https://github.com/apache/airflow|Apache Airflow®>* "
"is an open-source platform for developing, scheduling, "
"and monitoring batch-oriented workflows."
),
Expand Down

0 comments on commit d699087

Please sign in to comment.