summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorToxyFlog1627 <59206807+ToxyFlog1627@users.noreply.github.com>2023-08-11 14:01:54 +0000
committerMarkus Heiser <markus.heiser@darmarIT.de>2023-08-13 08:50:29 +0200
commitf175574f3731c99d82758952e37f52037476aa5f (patch)
tree2a20016a2a74fe48fa2cb639469d23ff1f60ef7b /searx
parent4573417b6c5d50935233268d672d0f3fc8cef8c6 (diff)
downloadsearxng-f175574f3731c99d82758952e37f52037476aa5f.tar.gz
searxng-f175574f3731c99d82758952e37f52037476aa5f.zip
[fix] typos in documentation & messages
Diffstat (limited to 'searx')
-rw-r--r--searx/settings.yml2
-rw-r--r--searx/version.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/settings.yml b/searx/settings.yml
index d7d5d2c48..f45cca808 100644
--- a/searx/settings.yml
+++ b/searx/settings.yml
@@ -113,7 +113,7 @@ ui:
default_theme: simple
# center the results ?
center_alignment: false
- # URL prefix of the internet archive, don't forgett trailing slash (if needed).
+ # URL prefix of the internet archive, don't forget trailing slash (if needed).
# cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
# Default interface locale - leave blank to detect from browser information or
# use codes from the 'locales' config section
diff --git a/searx/version.py b/searx/version.py
index 7a368e366..2931b6af4 100644
--- a/searx/version.py
+++ b/searx/version.py
@@ -65,7 +65,7 @@ def get_git_version():
git_commit_date_hash = git_commit_date_hash.replace('.0', '.')
tag_version = git_version = git_commit_date_hash
- # add "+dirty" suffix if there are uncommited changes except searx/settings.yml
+ # add "+dirty" suffix if there are uncommitted changes except searx/settings.yml
try:
subprocess_run("git diff --quiet -- . ':!searx/settings.yml' ':!utils/brand.env'")
except subprocess.CalledProcessError as e: