This is an automated email from the ASF dual-hosted git repository.
srini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 1cd8b41061 Remove too many "to"s (#19559)
1cd8b41061 is described below
commit 1cd8b41061f8a43d40dd5cd43476931ce6490647
Author: Fatos Morina <[email protected]>
AuthorDate: Wed Apr 6 15:27:09 2022 +0200
Remove too many "to"s (#19559)
---
docs/docs/installation/sql-templating.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/installation/sql-templating.mdx
b/docs/docs/installation/sql-templating.mdx
index 40f0744fba..09cc036e6a 100644
--- a/docs/docs/installation/sql-templating.mdx
+++ b/docs/docs/installation/sql-templating.mdx
@@ -33,7 +33,7 @@ For example, to add a time range to a virtual dataset, you
can write the followi
SELECT * from tbl where dttm_col > '{{ from_dttm }}' and dttm_col < '{{
to_dttm }}'
```
-To add custom functionality to the Jinja context, you need to to to overload
the default Jinja
+To add custom functionality to the Jinja context, you need to overload the
default Jinja
context in your environment by defining the `JINJA_CONTEXT_ADDONS` in your
superset configuration
(`superset_config.py`). Objects referenced in this dictionary are made
available for users to use
where the Jinja context is made available.