From 6b2d26712768397d9b2cab210fe508ceddbed4ee Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Mon, 27 Nov 2023 22:14:52 +0000 Subject: [PATCH] Update sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md Co-authored-by: Rich Harris --- .../src/routes/docs/content/01-api/02-runes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md b/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md index 1f07f07188..279273e79c 100644 --- a/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md +++ b/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md @@ -267,9 +267,9 @@ export default { ## `$log` -The `$log` rune is roughly equivalent to `console.log`, with the exception that when anything passed to the -rune changes, the latest values will be logged out. `$log` tracks reactive state deeply, meaning that mutating -something from with an object or array using fine-grain reactivity will be tracked. +The `$log` rune is roughly equivalent to `console.log`, with the exception that it will re-run whenever the +arguments change. `$log` tracks reactive state deeply, meaning that updating something inside an object +or array using [fine-grained reactivity](/docs/fine-grained-reactivity) will update the logs. ```svelte