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

ephraimanierobi pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c9f86546879f4e176284c4a5df86595a0d99542d
Author: Jared Fallt <[email protected]>
AuthorDate: Mon Feb 12 13:56:06 2024 -0500

    Fix typo in deferring.rst (#37367)
    
    Fix typo
    
    (cherry picked from commit 27c6ffdd22eecdd20fbb6eed48adc92f10dd6c24)
---
 docs/apache-airflow/authoring-and-scheduling/deferring.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/authoring-and-scheduling/deferring.rst 
b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
index adacf4b79d..198f9b2beb 100644
--- a/docs/apache-airflow/authoring-and-scheduling/deferring.rst
+++ b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
@@ -78,7 +78,7 @@ When writing a deferrable operators these are the main points 
to consider:
             self, deferrable: bool = conf.getboolean("operators", 
"default_deferrable", fallback=False), **kwargs
         ) -> None:
             super().__init__(**kwargs)
-            self.deferrable = deferable
+            self.deferrable = deferrable
 
         def execute(self, context: Context) -> None:
             if self.deferrable:

Reply via email to