From 927e6e215a357044bbeed3dc285e5d3ae7d1d54b Mon Sep 17 00:00:00 2001 From: Nestor Vera Date: Sun, 26 Jun 2022 10:48:20 +0200 Subject: [PATCH] Minor wording improvement --- docs/content/2.guide/1.concepts/3.rendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/1.concepts/3.rendering.md b/docs/content/2.guide/1.concepts/3.rendering.md index dc18da5eabc..b1f79e4885c 100644 --- a/docs/content/2.guide/1.concepts/3.rendering.md +++ b/docs/content/2.guide/1.concepts/3.rendering.md @@ -47,7 +47,7 @@ Universal rendering allows a Nuxt application to provide quick page load times w ### Cons - **Development constraints:** Server and browser environments don't provide the same APIs, and it can be tricky to write code that can run on both sides seamlessly. Fortunately, Nuxt provides guidelines and specific variables to help you determine where a piece of code is executed. -- **Cost:** A server needs to run to render pages on the fly. This adds a monthly cost like any traditional server. However, the server calls are highly reduced thanks to universal rendering with the browser taking over on client-side navigation. +- **Cost:** A server needs to be running in order to render pages on the fly. This adds a monthly cost like any traditional server. However, the server calls are highly reduced thanks to universal rendering with the browser taking over on client-side navigation. ### Examples