From 8757107d2548ce515927216ea6861c21a4fd9452 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Wed, 26 Feb 2025 01:59:25 -0500 Subject: [PATCH] better word choice --- docs/communication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/communication.md b/docs/communication.md index 5e48faa..08f2fa6 100644 --- a/docs/communication.md +++ b/docs/communication.md @@ -22,7 +22,7 @@ Nodes and Flows **communicate** in two ways: If you know memory management, think of the **Shared Store** like a **heap** (shared by all function calls), and **Params** like a **stack** (assigned by the caller). -> **Best Practice:** Use `Shared Store` for almost all cases. It's flexible and easy to manage. It separates data storage from data processing, making the code more readable and easier to maintain. +> **Best Practice:** Use `Shared Store` for almost all cases. It's flexible and easy to manage. It separates *Data Schema* from *Compute Logic*, making the code easier to maintain. > > `Params` is more a syntax sugar for [Batch](./batch.md). {: .note }