From fb87c6ff8c85816320ac963015d11ec920f27326 Mon Sep 17 00:00:00 2001 From: "Tylah Kapa [SSW]" Date: Tue, 2 Apr 2024 08:20:57 +1000 Subject: [PATCH] Update rule.md Fix typo --- rules/modular-monoliths/rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/modular-monoliths/rule.md b/rules/modular-monoliths/rule.md index bc62cf5cbad..fa904003f5b 100644 --- a/rules/modular-monoliths/rule.md +++ b/rules/modular-monoliths/rule.md @@ -34,7 +34,7 @@ A Modular Monolith is a software architecture pattern that combines elements of * Presentation (API or UI) * Each module represents a business capability or domain * Each module should be as highly cohesive and loosely coupled with other modules -* Each module manages it's on data and persistence +* Each module manages it's own data and persistence ### ✅ Advantages