summaryrefslogtreecommitdiff
path: root/searx/infopage
diff options
context:
space:
mode:
authorjazzzooo <38244149+jazzzooo@users.noreply.github.com>2023-09-15 00:53:03 -0700
committerMarkus Heiser <markus.heiser@darmarIT.de>2023-09-18 16:20:27 +0200
commit223b3487c38a2390ad936943266a44da9cbb810a (patch)
tree6dde6498a4c37731427715d01b6314b09be52897 /searx/infopage
parenta9b6963971327605db1509795be7795dc7401f3f (diff)
downloadsearxng-223b3487c38a2390ad936943266a44da9cbb810a.tar.gz
searxng-223b3487c38a2390ad936943266a44da9cbb810a.zip
[fix] spelling
Diffstat (limited to 'searx/infopage')
-rw-r--r--searx/infopage/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/infopage/__init__.py b/searx/infopage/__init__.py
index 6b8fd9133..8e6da0256 100644
--- a/searx/infopage/__init__.py
+++ b/searx/infopage/__init__.py
@@ -55,7 +55,7 @@ class InfoPage:
@cached_property
def content(self):
- """Content of the page (rendered in a Jinja conntext)"""
+ """Content of the page (rendered in a Jinja context)"""
ctx = self.get_ctx()
template = jinja2.Environment().from_string(self.raw_content)
return template.render(**ctx)
@@ -119,7 +119,7 @@ class InfoPageSet: # pylint: disable=too-few-public-methods
):
self.page_class = page_class or InfoPage
self.folder: str = info_folder or _INFO_FOLDER
- """location of the Markdwon files"""
+ """location of the Markdown files"""
self.CACHE: typing.Dict[tuple, typing.Optional[InfoPage]] = {}