Skip to content

Commit

Permalink
docs: Fix a few typos
Browse files Browse the repository at this point in the history
There are small typos in:
- ajenti-core/aj/config.py
- docs/source/man/config.rst
- docs/source/man/install.rst
- plugins/cron/views.py
- plugins/docker/main.py
- plugins/session_list/README.md

Fixes:
- Should read `certificate` rather than `certificat`.
- Should read `successful` rather than `successfull`.
- Should read `software` rather than `sofware`.
- Should read `mentioned` rather than `mentionned`.
- Should read `currently` rather than `currenly`.
- Should read `connected` rather than `connectd`.
  • Loading branch information
timgates42 committed Jul 2, 2022
1 parent b8bcb9b commit c3bdf5e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ajenti-core/aj/config.py
Expand Up @@ -15,7 +15,7 @@ class BaseConfig():
.. py:attribute:: data
currenly loaded config content
currently loaded config content
"""
def __init__(self):
Expand Down
6 changes: 3 additions & 3 deletions docs/source/man/config.rst
Expand Up @@ -82,9 +82,9 @@ Explanations:
* **enable**: **true** or **false** to enable client authentication via certificates
* **force**: if **true**, only allows login with client certificate. If **false**, also permit authentication with password
* **certificates**: this entry contains all client certifcates for an automatic login. It will be filled through the settings in Ajenti with the following structure:
* **digest**: digest of the certificat
* **name**: name of the certificat
* **serial**: serial of the certificat
* **digest**: digest of the certificate
* **name**: name of the certificate
* **serial**: serial of the certificate
* **user**: username

email block
Expand Down
2 changes: 1 addition & 1 deletion docs/source/man/install.rst
Expand Up @@ -25,7 +25,7 @@ Automatic Installation in virtual environment
==============================================

.. CAUTION::
Please note that this install method is still under tests. Ajenti starts successfully on the previously mentionned supported operating systems, but all functionalities were not tested. Be kind to report any problem with this install method as issue here : https://github.com/ajenti/ajenti/issues
Please note that this install method is still under tests. Ajenti starts successfully on the previously mentioned supported operating systems, but all functionalities were not tested. Be kind to report any problem with this install method as issue here : https://github.com/ajenti/ajenti/issues

::

Expand Down
2 changes: 1 addition & 1 deletion plugins/cron/views.py
Expand Up @@ -40,7 +40,7 @@ def handle_api_save_crontab(self, http_context):
:param http_context: HttpContext
:type http_context: HttpContext
:return: True if successfull
:return: True if successful
:rtype: bool
"""

Expand Down
2 changes: 1 addition & 1 deletion plugins/docker/main.py
Expand Up @@ -11,7 +11,7 @@ def __init__(self, context):
def provide(self):
return [
{
# category:tools, category:sofware, category:system, category:other
# category:tools, category:software, category:system, category:other
'attach': 'category:software',
'name': 'Docker',
'icon': 'fab fa-docker',
Expand Down
2 changes: 1 addition & 1 deletion plugins/session_list/README.md
@@ -1,3 +1,3 @@
# Session list plugin

Update the session list of connectd users to show it with details on the frontend.
Update the session list of connected users to show it with details on the frontend.

0 comments on commit c3bdf5e

Please sign in to comment.