From cae1efc0face20ee84d888dd93ca4f276c40a5d8 Mon Sep 17 00:00:00 2001 From: Ace Da Costa Date: Mon, 23 Sep 2024 22:48:21 +0000 Subject: [PATCH] Fix grammar to allow better understanding of sentence (#36021) --- files/en-us/learn/server-side/first_steps/introduction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/learn/server-side/first_steps/introduction/index.md b/files/en-us/learn/server-side/first_steps/introduction/index.md index c8ac2482c5b08b0..c9ac675fc6c2d81 100644 --- a/files/en-us/learn/server-side/first_steps/introduction/index.md +++ b/files/en-us/learn/server-side/first_steps/introduction/index.md @@ -54,7 +54,7 @@ The server retrieves the requested document from its file system and returns an ### Dynamic sites -A dynamic website is one where some of the response content is generated _dynamically_, only when needed. On a dynamic website HTML pages are normally created by inserting data from a database into placeholders in HTML templates (this is a much more efficient way of storing large amounts of content than using static websites). +A dynamic website is one where some of the response content is generated _dynamically_, only when needed. On a dynamic website, HTML pages are normally created by inserting data from a database into placeholders in HTML templates (this is a much more efficient way of storing large amounts of content than using static websites). A dynamic site can return different data for a URL based on information provided by the user or stored preferences and can perform other operations as part of returning a response (e.g. sending notifications).