diff --git a/docs/src/content/docs/getting-started/learning.md b/docs/src/content/docs/getting-started/learning.md index 554dba34f..380b9a890 100644 --- a/docs/src/content/docs/getting-started/learning.md +++ b/docs/src/content/docs/getting-started/learning.md @@ -77,6 +77,8 @@ ctx.get(cAtom) // 3 It's important to note that an atom's value is retrieved only when read. In other words, if no one has read a computed atom, its associated function won't run. +Also, If a computed atom doesn't explicitly track at least one other atom (by `spy`), it will recall on each read (`get` / `spy`). + ### Update Atom To change the value of an atom, you also need a context.