chore: fix typos (#12078)

pull/12085/head
Rich Harris 1 year ago committed by GitHub
parent 90ce1d5f0b
commit 98d90745ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -215,7 +215,7 @@ describe('signals', () => {
}; };
}); });
test('correctly cleanup onowned nested derived values', () => { test('correctly cleanup unowned nested derived values', () => {
return () => { return () => {
const nested: Derived<string>[] = []; const nested: Derived<string>[] = [];
@ -284,7 +284,7 @@ describe('signals', () => {
return []; return [];
}); });
test('two effects with an unowned derived that has no depedencies', () => { test('two effects with an unowned derived that has no dependencies', () => {
const log: Array<Array<any>> = []; const log: Array<Array<any>> = [];
render_effect(() => { render_effect(() => {
@ -306,7 +306,7 @@ describe('signals', () => {
return [$.get(some_state)]; return [$.get(some_state)];
}); });
test('two effects with an unowned derived that has some depedencies', () => { test('two effects with an unowned derived that has some dependencies', () => {
const log: Array<Array<any>> = []; const log: Array<Array<any>> = [];
render_effect(() => { render_effect(() => {

Loading…
Cancel
Save