Skip to content

Commit 747d24a

Browse files
committed
lint
1 parent 448cff1 commit 747d24a

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/compiler/phases/3-transform/client/transform-template

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/transform-template/to-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function build(item) {
4949
const children = item.children.map(build);
5050
element.properties.push(b.prop('init', b.id('c'), b.array(children)));
5151

52-
// special case — strip leading newline from `<pre>` and `<textarea>`
52+
// special case — strip leading newline from `<pre>` and `<textarea>`
5353
if (item.name === 'pre' || item.name === 'textarea') {
5454
const first = children[0];
5555
if (first?.type === 'Literal') {

0 commit comments

Comments
 (0)