Skip to content

Commit

Permalink
Fix a broken link in the documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Boberg <[email protected]>
  • Loading branch information
axelboberg committed Sep 8, 2024
1 parent 77b866f commit a2e498a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a2e498a

Please sign in to comment.