Skip to content

Commit 4af744d

Browse files
fix(create-qwik): correct spelling from 'behaviour' to 'behavior'
Changed British English spelling 'behaviour' to American English 'behavior' in Node.js version error message to maintain consistency with project conventions.
1 parent cd7eed1 commit 4af744d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/create-qwik/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function checkNodeVersion() {
4343
if (Number(minorVersion) < 11) {
4444
console.error(
4545
red(
46-
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${version}. https://github.com/QwikDev/qwik/issues/3035`
46+
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behavior of Qwik. You are currently running Node.js ${version}. https://github.com/QwikDev/qwik/issues/3035`
4747
)
4848
);
4949
}

0 commit comments

Comments
 (0)