summaryrefslogtreecommitdiff
path: root/docs/dev
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 /docs/dev
parent4573417b6c5d50935233268d672d0f3fc8cef8c6 (diff)
downloadsearxng-f175574f3731c99d82758952e37f52037476aa5f.tar.gz
searxng-f175574f3731c99d82758952e37f52037476aa5f.zip
[fix] typos in documentation & messages
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/contribution_guide.rst2
-rw-r--r--docs/dev/engines/index.rst2
-rw-r--r--docs/dev/engines/online/duckduckgo.rst6
-rw-r--r--docs/dev/lxcdev.rst6
-rw-r--r--docs/dev/makefile.rst4
-rw-r--r--docs/dev/quickstart.rst6
-rw-r--r--docs/dev/translation.rst2
7 files changed, 14 insertions, 14 deletions
diff --git a/docs/dev/contribution_guide.rst b/docs/dev/contribution_guide.rst
index bc4f6514d..df5200637 100644
--- a/docs/dev/contribution_guide.rst
+++ b/docs/dev/contribution_guide.rst
@@ -186,5 +186,5 @@ commit and push:
.. attention::
- If you are working in your own brand, don't forgett to adjust your
+ If you are working in your own brand, don't forget to adjust your
:ref:`settings brand`.
diff --git a/docs/dev/engines/index.rst b/docs/dev/engines/index.rst
index b5c3184e0..88dd874d3 100644
--- a/docs/dev/engines/index.rst
+++ b/docs/dev/engines/index.rst
@@ -26,7 +26,7 @@ The :py:obj:`engine_type <searx.enginelib.Engine.engine_type>` of an engine
determines which :ref:`search processor <searx.search.processors>` is used by
the engine.
-In this section a list of the enignes that are documented is given, a complete
+In this section a list of the engines that are documented is given, a complete
list of the engines can be found in the source under: :origin:`searx/engines`.
.. _online engines:
diff --git a/docs/dev/engines/online/duckduckgo.rst b/docs/dev/engines/online/duckduckgo.rst
index d0d18eb8a..a73b38983 100644
--- a/docs/dev/engines/online/duckduckgo.rst
+++ b/docs/dev/engines/online/duckduckgo.rst
@@ -1,8 +1,8 @@
.. _duckduckgo engines:
-=================
-DukcDukGo Engines
-=================
+==================
+DuckDuckGo Engines
+==================
.. contents::
:depth: 2
diff --git a/docs/dev/lxcdev.rst b/docs/dev/lxcdev.rst
index 854b193ff..79716ae57 100644
--- a/docs/dev/lxcdev.rst
+++ b/docs/dev/lxcdev.rst
@@ -148,7 +148,7 @@ services quite easy.
In the example above the SearXNG instance in the container is wrapped to
``http://n.n.n.140/searxng`` to the HOST system. Note, on your HOST system, the
IP of your ``searxng-archlinux`` container is different to this example. To
-test the instance in the conatiner from outside of the container, in your WEB
+test the instance in the container from outside of the container, in your WEB
browser on your desktop just open the URL reported in your installation
.. _working in containers:
@@ -255,7 +255,7 @@ With the use of the :ref:`searxng.sh` the SearXNG service was installed as
With the command above, we stopped the SearXNG uWSGI-App in the archlinux
container.
-The uWSGI-App for the archlinux dsitros is configured in
+The uWSGI-App for the archlinux distros is configured in
:origin:`utils/templates/etc/uwsgi/apps-archlinux/searxng.ini`, from where at
least you should attend the settings of ``uid``, ``chdir``, ``env`` and
``http``::
@@ -272,7 +272,7 @@ shares the root folder of the repository and the command ``utils/lxc.sh cmd``
handles relative path names **transparent**.
To wrap the SearXNG installation in the container into a developer one, we
-simple have to create a smylink to the **transparent** reposetory from the
+simple have to create a symlink to the **transparent** repository from the
desktop. Now lets replace the repository at ``searxng-src`` in the container
with the working tree from outside of the container:
diff --git a/docs/dev/makefile.rst b/docs/dev/makefile.rst
index 62ac2e905..286055afb 100644
--- a/docs/dev/makefile.rst
+++ b/docs/dev/makefile.rst
@@ -138,7 +138,7 @@ from the YAML configuration:
- ``SEARXNG_PORT`` from :ref:`server.port <settings server>`
The ``GIT_URL`` and ``GIT_BRANCH`` in the origin:`utils/brand.env` file, are
-readed from the git VCS and the branch that is checked out when ``make
+read from the git VCS and the branch that is checked out when ``make
buildenv`` command runs.
.. _brand:
@@ -423,7 +423,7 @@ To get live builds while modifying CSS & JS use (:ref:`make run`):
The :origin:`Makefile` targets ``static.build.*`` cover common tasks to build (a
commit of) the static files. The ``./manage static.build..*`` command line
-can be used to convenient run common build tasks of the satic files.
+can be used to convenient run common build tasks of the static files.
.. program-output:: bash -c "cd ..; ./manage static.help"
diff --git a/docs/dev/quickstart.rst b/docs/dev/quickstart.rst
index 9bee8f60c..c45c24491 100644
--- a/docs/dev/quickstart.rst
+++ b/docs/dev/quickstart.rst
@@ -67,14 +67,14 @@ the modified source code from the build products first run:
make static.build.restore
This will restore the old build products and only your changes of the code
-remain in the working tree which can now be added & commited. When all sources
-are commited, you can commit the build products simply by:
+remain in the working tree which can now be added & committed. When all sources
+are committed, you can commit the build products simply by:
.. code:: bash
make static.build.commit
-Commiting the build products should be the last step, just before you send us
+Committing the build products should be the last step, just before you send us
your PR. There is also a make target to rewind this last build commit:
.. code:: bash
diff --git a/docs/dev/translation.rst b/docs/dev/translation.rst
index 693f6d2da..57c76a0c1 100644
--- a/docs/dev/translation.rst
+++ b/docs/dev/translation.rst
@@ -56,7 +56,7 @@ Sync from *origin* to *weblate*: using ``make weblate.push.translations``
<.github/workflows/integration.yml>` checks for updated translations.
Sync from *weblate* to *origin*: using ``make weblate.translations.commit``
- Every Friday, the GitHub workflow :origin:`babel / create PR for additons from
+ Every Friday, the GitHub workflow :origin:`babel / create PR for additions from
weblate <.github/workflows/translations-update.yml>` creates a PR with the
updated translation files: