Skip to content

Commit a3ce4be

Browse files
Remove "dumb" as well
1 parent a20d094 commit a3ce4be

File tree

2 files changed

+2
-2
lines changed
  • packages/svelte

2 files changed

+2
-2
lines changed

packages/svelte/src/compiler/legacy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ export function convert(source, ast) {
591591
Text(node, { path }) {
592592
const parent = path.at(-1);
593593
if (parent?.type === 'RegularElement' && parent.name === 'style') {
594-
// these text nodes are missing `raw` for some dumb reason
594+
// these text nodes are missing `raw` for some reason
595595
return /** @type {AST.Text} */ ({
596596
type: 'Text',
597597
start: node.start,

packages/svelte/tests/runtime-legacy/samples/window-event-context/_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default test({
88

99
html: 'true',
1010

11-
skip: /^v4/.test(process.version), // node 4 apparently does some dumb stuff
11+
skip: /^v4/.test(process.version), // node 4 apparently does some weird stuff
1212

1313
async test({ assert, component, target, window }) {
1414
const event = new window.Event('click');

0 commit comments

Comments
 (0)