Skip to content

Commit

Permalink
fix (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangenming authored Jan 21, 2025
1 parent be9de0a commit 29f6b9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/en/guide/v10/signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ const count = signal(0);
effect(() => {
// Update `count` without subscribing to `count` or `delta`:
count.value = untracked(() => {
count.value + delta.value
return count.value + delta.value
});
});
```
Expand Down
2 changes: 1 addition & 1 deletion content/ru/guide/v10/signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ const count = signal(0);
effect(() => {
// Обновляем `count` без подписки на `count` или `delta`:
count.value = untracked(() => {
count.value + delta.value
return count.value + delta.value
});
});
```
Expand Down

0 comments on commit 29f6b9b

Please sign in to comment.