This is an automated email from the ASF dual-hosted git repository.
eladkal 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 9d54ac94826 Fix docs spellcheck failure in the IBM Db2 provider
(#72203)
9d54ac94826 is described below
commit 9d54ac94826d8f46c0d6d1032ee7d9988e562d70
Author: Jarek Potiuk <[email protected]>
AuthorDate: Fri Aug 28 16:51:24 2026 +0200
Fix docs spellcheck failure in the IBM Db2 provider (#72203)
The nightly docs build fails spellcheck on the Db2 hook because the
module name in the get_conn docstring is unquoted prose, so the checker
treats part of it as a misspelled word.
---
providers/ibm/db2/src/airflow/providers/ibm/db2/hooks/db2.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/providers/ibm/db2/src/airflow/providers/ibm/db2/hooks/db2.py
b/providers/ibm/db2/src/airflow/providers/ibm/db2/hooks/db2.py
index 314b506285e..82db64b605e 100644
--- a/providers/ibm/db2/src/airflow/providers/ibm/db2/hooks/db2.py
+++ b/providers/ibm/db2/src/airflow/providers/ibm/db2/hooks/db2.py
@@ -74,7 +74,7 @@ class Db2Hook(DbApiHook):
def get_conn(self) -> Any:
"""
- Return ibm_db_dbi connection object.
+ Return ``ibm_db_dbi`` connection object.
:return: Db2 connection object
"""