better word choice

This commit is contained in:
zachary62 2025-02-26 01:59:25 -05:00
parent dab9e94605
commit 8757107d25
1 changed files with 1 additions and 1 deletions

View File

@ -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 }