Skip to content

Commit eee1650

Browse files
committed
chore: fix typos in func name
1 parent e9cd45a commit eee1650

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/svelte/tests/snapshot/samples/nullish-coallescence-omittance/_expected/client/index.svelte.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as $ from 'svelte/internal/client';
44
var on_click = (_, count) => $.update(count);
55
var root = $.from_html(`<h1></h1> <b></b> <button> </button> <h1></h1>`, 1);
66

7-
export default function Nullish_coallescence_omittance($$anchor) {
7+
export default function Nullish_coalescence_omittance($$anchor) {
88
let name = 'world';
99
let count = $.state(0);
1010
var fragment = root();

packages/svelte/tests/snapshot/samples/nullish-coallescence-omittance/_expected/server/index.svelte.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as $ from 'svelte/internal/server';
22

3-
export default function Nullish_coallescence_omittance($$renderer) {
3+
export default function Nullish_coalescence_omittance($$renderer) {
44
let name = 'world';
55
let count = 0;
66

0 commit comments

Comments
 (0)