From 225e7a2862af6f6d26489ed964bfe7e4d6917fd8 Mon Sep 17 00:00:00 2001 From: Jungpyo Hong Date: Wed, 23 Jun 2021 05:53:45 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ff4d98..8dad687 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Dependency injection is a pattern that can be used to eliminate the need for sin ### Type of Dependency Injection - 1. initializer injection + **1. initializer injection** ``` swift class DataManager { @@ -180,7 +180,7 @@ Dependency injection is a pattern that can be used to eliminate the need for sin } ``` - 2. property injection + **2. property injection** ```swift import UIKit @@ -192,7 +192,7 @@ class ViewController: UIViewController { } ``` - 3. method injection + **3. method injection** ```swift import Foundation