From a145479c9152e8bd35317851eea68e95cd420229 Mon Sep 17 00:00:00 2001 From: pi Date: Fri, 31 Jul 2026 04:29:11 +1200 Subject: [PATCH] docs: fix 'encapsulate' to 'encapsulates' in service-layer/README.md --- service-layer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service-layer/README.md b/service-layer/README.md index f2dc54115884..82e5ffc6cb9a 100644 --- a/service-layer/README.md +++ b/service-layer/README.md @@ -20,7 +20,7 @@ tag: The Service Layer pattern is crucial for Java developers focusing on building robust application architectures that separate business processes from user interface concerns. -The pattern encapsulate business logic in a distinct layer to promote separation of concerns and to provide a well-defined API for the presentation layer. +The pattern encapsulates business logic in a distinct layer to promote separation of concerns and to provide a well-defined API for the presentation layer. ## Detailed Explanation of Service Layer Pattern with Real-World Examples