Skip to content

Commit cd632e5

Browse files
authored
Update packages/svelte/src/internal/client/runtime.js
1 parent 41fb779 commit cd632e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ export function get(signal) {
743743
var is_derived = (flags & DERIVED) !== 0;
744744

745745
// If the derived is destroyed, just execute it again without retaining
746-
// it's memoisation properties as the derived is stale
746+
// its memoisation properties as the derived is stale
747747
if (is_derived && (flags & DESTROYED) !== 0) {
748748
var value = execute_derived(/** @type {Derived} */ (signal));
749749
// Ensure the derived remains destroyed

0 commit comments

Comments
 (0)