This is an automated email from the ASF dual-hosted git repository.
husseinawala 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 bb81c45aeb Fix typo in error message when `render_content` method is
not implemented (#34952)
bb81c45aeb is described below
commit bb81c45aebbe1856d78ac0b159e18abe4b80c15d
Author: Utkarsh Sharma <[email protected]>
AuthorDate: Sun Oct 15 21:27:21 2023 +0530
Fix typo in error message when `render_content` method is not implemented
(#34952)
---
docs/exts/operators_and_hooks_ref.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/exts/operators_and_hooks_ref.py
b/docs/exts/operators_and_hooks_ref.py
index 554043a2f7..5fc919baaf 100644
--- a/docs/exts/operators_and_hooks_ref.py
+++ b/docs/exts/operators_and_hooks_ref.py
@@ -244,7 +244,7 @@ class BaseJinjaReferenceDirective(Directive):
def render_content(self, *, tags: set[str] | None, header_separator: str =
DEFAULT_HEADER_SEPARATOR):
"""Return content in RST format"""
- raise NotImplementedError("Tou need to override render_content
method.")
+ raise NotImplementedError("You need to override render_content
method.")
def _common_render_list_content(*, header_separator: str, resource_type: str,
template: str):