From e501b7e445097ac096f1ce859b8a97a4e7a2e65a Mon Sep 17 00:00:00 2001 From: Yahya-Almubarak Date: Mon, 24 Nov 2025 00:14:24 +0200 Subject: [PATCH] docs: fix typo in tutorial --- adev/src/content/guide/ssr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/ssr.md b/adev/src/content/guide/ssr.md index 81128388c5f..bd88fbd42d8 100644 --- a/adev/src/content/guide/ssr.md +++ b/adev/src/content/guide/ssr.md @@ -1,6 +1,6 @@ # Server and hybrid rendering -Angular ships all applications as client-side rendered (CSR) by default. While this approach delivers a initial payload that's lightweight, it introduces trade-offs including slower load times, degraded performance metrics, and higher resource demands since the user's device performs most of the computations. As a result, many applications achieve significant performance improvements by integrating server-side rendering (SSR) into a hybrid rendering strategy. +Angular ships all applications as client-side rendered (CSR) by default. While this approach delivers an initial payload that's lightweight, it introduces trade-offs including slower load times, degraded performance metrics, and higher resource demands since the user's device performs most of the computations. As a result, many applications achieve significant performance improvements by integrating server-side rendering (SSR) into a hybrid rendering strategy. ## What is hybrid rendering?