From 1ec1b319e5208dbde18a53cc4430051d5bbd54fd Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Fri, 27 Oct 2023 12:24:22 +0100 Subject: [PATCH] Fix formatting in docs --- docs/source/request_system.rst | 2 +- .../simulation_components/system/database_client_server.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/request_system.rst b/docs/source/request_system.rst index 09e46380..cdaf2d99 100644 --- a/docs/source/request_system.rst +++ b/docs/source/request_system.rst @@ -5,7 +5,7 @@ Request System ============== -``SimComponent``s in the simulation are decoupled from the agent training logic. However, they still need a managed means of accepting requests to perform actions. For this, they use ``RequestManager`` and ``RequestType``. +``SimComponent`` in the simulation are decoupled from the agent training logic. However, they still need a managed means of accepting requests to perform actions. For this, they use ``RequestManager`` and ``RequestType``. Just like other aspects of SimComponent, the request typess are not managed centrally for the whole simulation, but instead they are dynamically created and updated based on the nodes, links, and other components that currently exist. This was achieved in the following way: diff --git a/docs/source/simulation_components/system/database_client_server.rst b/docs/source/simulation_components/system/database_client_server.rst index 32568477..53687f60 100644 --- a/docs/source/simulation_components/system/database_client_server.rst +++ b/docs/source/simulation_components/system/database_client_server.rst @@ -14,7 +14,7 @@ The ``DatabaseService`` provides a SQL database server simulation by extending t Key capabilities ^^^^^^^^^^^^^^^^ -- Initialises a SQLite database file in the ``Node``'s ``FileSystem`` upon creation. +- Initialises a SQLite database file in the ``Node`` 's ``FileSystem`` upon creation. - Handles connecting clients by maintaining a dictionary of connections mapped to session IDs. - Authenticates connections using a configurable password. - Executes SQL queries against the SQLite database.