From ab3b12b31085906bd22fe88cac782996317f5393 Mon Sep 17 00:00:00 2001 From: Bryan Terce Date: Sun, 8 Sep 2019 01:18:05 -0700 Subject: [PATCH] Test typos --- .../samples/store-each-binding-destructuring/main.svelte | 2 +- test/runtime/samples/store-each-binding/main.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtime/samples/store-each-binding-destructuring/main.svelte b/test/runtime/samples/store-each-binding-destructuring/main.svelte index 7c7188203b..0b68038e73 100644 --- a/test/runtime/samples/store-each-binding-destructuring/main.svelte +++ b/test/runtime/samples/store-each-binding-destructuring/main.svelte @@ -2,7 +2,7 @@ import { writable } from 'svelte/store'; const items = writable([ - { id: 0, text: 'inital' } + { id: 0, text: 'initial' } ]); diff --git a/test/runtime/samples/store-each-binding/main.svelte b/test/runtime/samples/store-each-binding/main.svelte index 1caeba2ceb..917d5c2001 100644 --- a/test/runtime/samples/store-each-binding/main.svelte +++ b/test/runtime/samples/store-each-binding/main.svelte @@ -2,7 +2,7 @@ import { writable } from 'svelte/store'; const items = writable([ - { id: 0, text: 'inital' } + { id: 0, text: 'initial' } ]);