From a3233bc8fe01edc2943fb71241cfbb3ad2bd5e8a Mon Sep 17 00:00:00 2001 From: Ido Ophir Date: Mon, 7 Apr 2025 11:29:50 +0300 Subject: [PATCH] [Imported] Grammar issues in README.md (#482) * Grammar issues in README.md "terminates" --> "terminate" "a new API results" --> "new API results" * Update README.md --------- Co-authored-by: CL123123 Co-authored-by: Anandha Krishnan S --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdeb6ee4..1fc863e5 100644 --- a/README.md +++ b/README.md @@ -804,7 +804,7 @@ Additional benefits include: Source: Intro to architecting systems for scale

-Separating out the web layer from the application layer (also known as platform layer) allows you to scale and configure both layers independently. Adding a new API results in adding application servers without necessarily adding additional web servers. The **single responsibility principle** advocates for small and autonomous services that work together. Small teams with small services can plan more aggressively for rapid growth. +Separating out the web layer from the application layer (also known as platform layer) allows you to scale and configure both layers independently. Adding new APIs results in adding application servers without necessarily adding additional web servers. The **single responsibility principle** advocates for small and autonomous services that work together. Small teams with small services can plan more aggressively for rapid growth. Workers in the application layer also help enable [asynchronism](#asynchronism).