fix: correct spelling errors in test files (#17630)

Fix "wich" -> "which", "aswell" -> "as well" in CSS global-block test,
and "occurence" -> "occurrence" in sourcemaps test type definition.
pull/17644/head
Artyom Alekseevich 8 months ago committed by GitHub
parent 01db7b8c2a
commit 0c715afdab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -39,7 +39,7 @@
/*}*/ /*}*/
} }
/* ...wich is equivalent to `div :global { &.x { ...} }` ... */ /* ...which is equivalent to `div :global { &.x { ...} }` ... */
div.svelte-xyz { div.svelte-xyz {
&.x { &.x {
color: green; color: green;

@ -41,7 +41,7 @@
} }
} }
/* ...wich is equivalent to `div :global { &.x { ...} }` ... */ /* ...which is equivalent to `div :global { &.x { ...} }` ... */
div :global { div :global {
&.x { &.x {
color: green; color: green;

@ -8,9 +8,9 @@ import { decode } from '@jridgewell/sourcemap-codec';
type SourceMapEntry = type SourceMapEntry =
| string | string
| { | {
/** If not the first occurence, but the nth should be found */ /** If not the first occurrence, but the nth should be found */
idxOriginal?: number; idxOriginal?: number;
/** If not the first occurence, but the nth should be found */ /** If not the first occurrence, but the nth should be found */
idxGenerated?: number; idxGenerated?: number;
/** The original string to find */ /** The original string to find */
str: string; str: string;

Loading…
Cancel
Save