From 866441629bc9982ec61dcf48dfa7590334a02c92 Mon Sep 17 00:00:00 2001 From: Mr-Leshiy Date: Fri, 16 Aug 2024 15:52:56 +0300 Subject: [PATCH] fix markdown --- .../09_architecture_decisions/0004-app-loading.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/src/architecture/09_architecture_decisions/0004-app-loading.md b/docs/src/architecture/09_architecture_decisions/0004-app-loading.md index 312bcc2b4..26e027434 100644 --- a/docs/src/architecture/09_architecture_decisions/0004-app-loading.md +++ b/docs/src/architecture/09_architecture_decisions/0004-app-loading.md @@ -8,7 +8,10 @@ ## Context -Hermes, as an engine that runs user-developed applications, should have the functionality to load and execute the provided assembled application. This process must validate the application's integrity and correctness and prepare the application's state before executing it. +Hermes, as an engine that runs user-developed applications, should have the functionality to load and +execute the provided assembled application. +This process must validate the application's integrity and correctness and prepare the application's state +before executing it. ## Assumptions @@ -16,11 +19,13 @@ Hermes application package could be corrupted or modified. ## Decision -During each application loading and running process, the application package should be provided. All possible validations and initialization should be performed based on the package data. +During each application loading and running process, the application package should be provided. +All possible validations and initialization should be performed based on the package data. ## Risks -* Potential bad user experience (UX) for each application run due to time consumption in validations and state preparation +* Potential bad user experience (UX) for each application run due to time consumption in validations and + state preparation ## Alternatives