From 6a3412b20712f7e1cf11a276d71e0822792745a4 Mon Sep 17 00:00:00 2001 From: Zachary Huang <33015448+zachary62@users.noreply.github.com> Date: Sat, 15 Mar 2025 02:07:14 -0400 Subject: [PATCH] Update communication.md --- docs/core_abstraction/communication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_abstraction/communication.md b/docs/core_abstraction/communication.md index 6288c9c..d86ac9f 100644 --- a/docs/core_abstraction/communication.md +++ b/docs/core_abstraction/communication.md @@ -11,7 +11,7 @@ Nodes and Flows **communicate** in 2 ways: 1. **Shared Store (for almost all the cases)** - - A global data structure (often an in-mem dict) that all nodes can read and write by `prep()` and `post()`. + - A global data structure (often an in-mem dict) that all nodes can read ( `prep()`) and write (`post()`). - Great for data results, large content, or anything multiple nodes need. - You shall design the data structure and populate it ahead.