You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/CodableDatastore/Datastore/DatastoreFormat.swift
+33-6Lines changed: 33 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,16 @@ import Foundation
14
14
///
15
15
/// This type also exists so implementers can conform a `struct` to it that declares a number of key paths as stored properties.
16
16
///
17
-
/// Conformers can create subtypes for their versioned models either in the body of their struct or in legacy extentions. Additionally, you are encouraged to make **static** properties available for things like the current version, or a configured ``Datastore`` — this allows easy access to them without mucking around declaring them in far-away places in your code base.
17
+
/// Conformers can create subtypes for their versioned models either in the body of their struct or in legacy extensions. Additionally, you are encouraged to make **static** properties available for things like the current version, or a configured ``Datastore`` — this allows easy access to them without mucking around declaring them in far-away places in your code base.
18
18
///
19
19
/// ```swift
20
20
/// struct BooksFormat {
21
21
/// static let defaultKey: DatastoreKey = "BooksStore"
0 commit comments