From 8b7bbf331d7d2e5ed1ebcc8043e171a648ca742e Mon Sep 17 00:00:00 2001 From: O-O-wl Date: Sat, 3 Aug 2024 15:32:50 +0900 Subject: [PATCH] Fix typos in GettingStarted.md --- Sources/Factory/Factory.docc/Basics/GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Factory/Factory.docc/Basics/GettingStarted.md b/Sources/Factory/Factory.docc/Basics/GettingStarted.md index fe61f7dc..4ed44a68 100644 --- a/Sources/Factory/Factory.docc/Basics/GettingStarted.md +++ b/Sources/Factory/Factory.docc/Basics/GettingStarted.md @@ -65,7 +65,7 @@ For more examples of Factory definitions that define scopes, use constructor inj ## Resolving a Factory -To resolve a Factory and obtain an object or service of the desired type, one simply calls the Factory as s function. Here we use the `shared` container that's provided for each and every container type. +To resolve a Factory and obtain an object or service of the desired type, one simply calls the Factory as function. Here we use the `shared` container that's provided for each and every container type. ```swift class ContentViewModel: ObservableObject { private let myService = Container.shared.service()