From fc5cf375eabb11cbda5bb826150f21e56c0b5c42 Mon Sep 17 00:00:00 2001 From: Jungpyo Hong <54448459+jphong1111@users.noreply.github.com> Date: Sun, 23 May 2021 15:31:51 -0500 Subject: [PATCH] edit path --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c9d0679..6b7a3d7 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ - [Coding Convention](#Coding-convention) - [Swift Lint](#Swift-lint) - [Design Pattern](#Design-Pattern) - - [Delegate](#Delegate) + - [Delegation](#Delegation) - [Singleton](#Singleton) - - [Observer](#Observer-Pattern) + - [Observer](#Observer) - [Code Structuring](#Code-Structuring) - [MVC](#MVC) - [MVVM](#MVVM) @@ -85,13 +85,13 @@ Design pattern is Check [this](https://refactoring.guru/design-patterns/swift) website for design pattern in Swift -### Delegate Pattern +### Delegation ```swift weak var delegate: SomeProtocol? ``` -### Singleton Pattern +### Singleton ```swift @@ -102,7 +102,7 @@ class SingletonPattern { } ``` -### Observer Pattern +### Observer The observer pattern lets one object observe changes on another object. Apple added language-level support for this pattern in Swift 5.1 with the addition of Publisher in the Combine framework.