From a2e498a291e08f0a6688a3829c144b78ef9c5ea2 Mon Sep 17 00:00:00 2001 From: Axel Boberg Date: Sun, 8 Sep 2024 23:42:12 +0200 Subject: [PATCH] Fix a broken link in the documentation Signed-off-by: Axel Boberg --- docs/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture.md b/docs/architecture.md index 6c5b3d6..77c6cf2 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -18,7 +18,7 @@ The shared context is simply a react context that's shared between clients. If o ### How the state is kept in sync -The shared state is synced through a websocket connection between the main process and the renderer processes. Changes to data is sent as a partial update which is merged to the current state in the main process using an [algorithm performing a deep apply](/lib/utils.js) operation. The entire state is then broadcast to other connected clients. +The shared state is synced through a websocket connection between the main process and the renderer processes. Changes to data is sent as a partial update which is merged to the current state in the main process using an [algorithm performing a deep apply operation](/shared/merge.js). The entire state is then broadcast to other connected clients. ### Context layout