From e897674d9cee96bac24b1d0c44ba4e4cee56d0bb Mon Sep 17 00:00:00 2001 From: Yashwanth0620 Date: Sat, 2 Dec 2023 20:10:36 +0530 Subject: [PATCH] Fixed a typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f41e7bd..56f62cc3 100644 --- a/README.md +++ b/README.md @@ -778,7 +778,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).