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 5 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 {
&.x {
color: green;
@ -51,7 +51,7 @@
color: green;
}
/* ...and therefore `div { :global.x { ... }` aswell */
/* ...and therefore `div { :global.x { ... }` as well */
div.svelte-xyz {
&.x {
color: green;

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

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

Loading…
Cancel
Save