Skip to content

Commit 95753ec

Browse files
committed
tweak comment
1 parent c1b606f commit 95753ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/utils/builders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export function call(callee, ...args) {
100100
if (typeof callee === 'string') callee = id(callee);
101101
args = args.slice();
102102

103-
// replacing missing arguments with `undefined`, unless they're at the end in which case remove them
103+
// replacing missing arguments with `void(0)`, unless they're at the end in which case remove them
104104
let i = args.length;
105105
let popping = true;
106106
while (i--) {

0 commit comments

Comments
 (0)