From dca393d5b684e35500df7f06dbe7bfe23e8d03e9 Mon Sep 17 00:00:00 2001 From: programarivm Date: Thu, 11 Jan 2024 15:13:09 +0100 Subject: [PATCH] Wording --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 89fba6b5..06dc76e9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ PHP Chess Server is an asynchronous PHP server that provides functionality to play chess online over a WebSocket connection as well as over a TCP connection. -Similar to the [Chess API](https://chess-api.readthedocs.io/en/latest/), the PHP Chess Server can be hosted on a custom domain. However, the API endpoints may take few seconds to execute like a file download or a database query while the event-driven, non-blocking architecture of the chess server allows to handle multiple concurrent connections in an efficient way. +Similar to the [Chess API](https://chess-api.readthedocs.io/en/latest/), it can be hosted on a custom domain. However, while the API endpoints may take few seconds to execute — for example, a file download or a database query — the event-driven, non-blocking architecture of the chess server allows to handle multiple concurrent connections in an efficient way. The chess commands are intended to run very quickly almost in real-time. @@ -10,8 +10,8 @@ The chess commands are intended to run very quickly almost in real-time. Dependencies required: -- Ratchet for asynchronously serving WebSockets. - PHP Chess for chess functionality. +- Ratchet for asynchronously serving WebSockets. - PHP-JWT for encoding and decoding JSON Web Tokens (JWT). - PHP dotenv for loading environment variables. - Monolog for logging commands.