Skip to content

Commit 98d9074

Browse files
authored
chore: fix typos (#12078)
1 parent 90ce1d5 commit 98d9074

File tree

1 file changed

+3
-3
lines changed
  • packages/svelte/tests/signals

1 file changed

+3
-3
lines changed

packages/svelte/tests/signals/test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ describe('signals', () => {
215215
};
216216
});
217217

218-
test('correctly cleanup onowned nested derived values', () => {
218+
test('correctly cleanup unowned nested derived values', () => {
219219
return () => {
220220
const nested: Derived<string>[] = [];
221221

@@ -284,7 +284,7 @@ describe('signals', () => {
284284
return [];
285285
});
286286

287-
test('two effects with an unowned derived that has no depedencies', () => {
287+
test('two effects with an unowned derived that has no dependencies', () => {
288288
const log: Array<Array<any>> = [];
289289

290290
render_effect(() => {
@@ -306,7 +306,7 @@ describe('signals', () => {
306306
return [$.get(some_state)];
307307
});
308308

309-
test('two effects with an unowned derived that has some depedencies', () => {
309+
test('two effects with an unowned derived that has some dependencies', () => {
310310
const log: Array<Array<any>> = [];
311311

312312
render_effect(() => {

0 commit comments

Comments
 (0)