From bc7f6090064eb5db607112ed6e40215d913e34ab Mon Sep 17 00:00:00 2001
From: Murat Karakas <murat.karakas@eteration.com>
Date: Mon, 12 Sep 2022 14:45:16 +0300
Subject: [PATCH] fix typos

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 2d8e9b1..b166997 100644
--- a/README.md
+++ b/README.md
@@ -860,7 +860,7 @@ public class OrderService {
 
 * **Configuring clients**
 
- As you realized we defane constants for client url's and it should not be 'localhost' for every environment of the application. We make our service's configurable by environment variables to gain more flexibility. Let's make it configurable from application.yaml file. 
+ We have defined constants for client url's and it should not be 'localhost' for every environment of the application. We make our service's configurable by environment variables to gain more flexibility. Let's make it configurable from application.yaml file. 
 
  ``` yaml
 spring:
@@ -877,7 +877,7 @@ client:
       url: ${CUSTOMER_PATH:http://localhost:8081}
  ```
 
- * So let's make it configurable from application.yaml file for customer-services under src/main/resources as below config 
+ * So let's make port number configurable from application.yaml file for customer-services under src/main/resources as below config 
 ```yaml
 spring:
   application:
@@ -887,7 +887,7 @@ server:
    port: ${PORT:8081}
 ```
 
-* Also let's make it configurable from application.yaml file for product-services under src/main/resources as below config
+* Also let's make port number configurable from application.yaml file for product-services under src/main/resources as below config
 ```yaml
 spring:
   application:
-- 
GitLab