From 7de4674ef5c44849a7d2d79e691613e57c87e27f Mon Sep 17 00:00:00 2001 From: Daniel Bayley Date: Wed, 2 Oct 2024 19:32:14 +0100 Subject: [PATCH] fix(docs): improve wording in problem oultine section (#6931) --- .../docs/src/routes/docs/(qwik)/concepts/think-qwik/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/docs/src/routes/docs/(qwik)/concepts/think-qwik/index.mdx b/packages/docs/src/routes/docs/(qwik)/concepts/think-qwik/index.mdx index 7d47a8fcd3f..0fb4d6def86 100644 --- a/packages/docs/src/routes/docs/(qwik)/concepts/think-qwik/index.mdx +++ b/packages/docs/src/routes/docs/(qwik)/concepts/think-qwik/index.mdx @@ -46,9 +46,9 @@ Modern websites require vast amounts of JavaScript to become interactive. Too mu 1. **Network bandwidth**: A large amount of code is shipped to the client, which may take a long time on slow networks. 2. **Startup time**: Once on the client, the code needs to be executed (as part of hydration) to get the site interactive. -As Qwik applications get more complex with a higher fidelity of interactivity, the amount of code has steadily increased over the years, with no sign of stopping. Simply put, Qwik sites are getting more complex. An increase in site complexity, in turn, requires more code. All of this code negatively impacts site startup performance. +As applications get more complex with a higher fidelity of interactivity, the amount of code being shipped has steadily increased over the years, with no sign of stopping. Simply put, websites are getting more complicated. An increase in site complexity, in turn, requires more code. All of this code negatively impacts site startup performance. -To make matters worse, JavaScript is single-threaded; therefore, Qwik’s complex sites can't take advantage of modern multi-core CPUs. +To make matters worse, JavaScript is single-threaded; therefore, complex sites can't take advantage of modern multi-core CPUs. ### How did we get here?