From a9288f3fef221b0e5e06303a7ee1ce709abf41e1 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Sat, 28 Dec 2024 23:12:26 +0000 Subject: [PATCH] fix doc --- docs/communication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/communication.md b/docs/communication.md index 3462ed6..cf99648 100644 --- a/docs/communication.md +++ b/docs/communication.md @@ -28,7 +28,7 @@ If you know memory management, **Shared Store** is like a **heap** shared across A shared store is typically an in-mem dictionary, like: ```python shared = {"data": {}, "summary": {}, "config": {...}, ...} -```python +``` It can also contain local file handlers, DB connections, or a combination for persistence. We recommend deciding the data structure or DB schema in advance based on your app requirements.