diff --git a/CoreDataBestPractices/Best Practices/Model Configurations/Transformables.swift b/CoreDataBestPractices/Best Practices/Model Configurations/Transformables.swift index 2489cbc..27f3a59 100644 --- a/CoreDataBestPractices/Best Practices/Model Configurations/Transformables.swift +++ b/CoreDataBestPractices/Best Practices/Model Configurations/Transformables.swift @@ -53,7 +53,7 @@ final class UIColorValueTransformer: ValueTransformer { } extension UIColorValueTransformer { - /// The name of the transformer. This is the name used to register the transformer using `ValueTransformer.setValueTrandformer(_"forName:)`. + /// The name of the transformer. This is the name used to register the transformer using `ValueTransformer.setValueTransformer(_"forName:)`. static let name = NSValueTransformerName(rawValue: String(describing: UIColorValueTransformer.self)) /// Registers the value transformer with `ValueTransformer`. diff --git a/CoreDataBestPractices/Best Practices/Threading.swift b/CoreDataBestPractices/Best Practices/Threading.swift index 5e60b2a..5e1c5f3 100644 --- a/CoreDataBestPractices/Best Practices/Threading.swift +++ b/CoreDataBestPractices/Best Practices/Threading.swift @@ -16,7 +16,7 @@ import CoreData extension PersistentContainer { /// Wrong: don't pass the objects. - /// With `-com.apple.CoreData.ConcurrencyDebug 1` launch argument enabled this is catched early on. + /// With `-com.apple.CoreData.ConcurrencyDebug 1` launch argument enabled this is caught early on. func deleteObjects(_ objects: [NSManagedObject]) { let taskContext = newBackgroundContext() taskContext.perform { diff --git a/README.md b/README.md index 9d08c3a..40c3eff 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ I would love for this project to grow as a source of best practices regarding Co ## License -**Core Data Best Pratices** is available under the MIT license, and uses source code from open source projects. See the [LICENSE](https://github.com/AvdLee/CoreDataBestPractices/blob/main/LICENSE) file for more info. +**Core Data Best Practices** is available under the MIT license, and uses source code from open source projects. See the [LICENSE](https://github.com/AvdLee/CoreDataBestPractices/blob/main/LICENSE) file for more info. ## Author