Skip to content

Commit 407a635

Browse files
bradfolnaftaly
authored andcommitted
Minor doc comment fixes
1 parent 5e85435 commit 407a635

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/Footprint/Footprint.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,21 +115,21 @@ final public class Footprint : @unchecked Sendable {
115115
/// Notification name sent when the Footprint.Memory.state and/or
116116
/// Footprint.Memory.pressure changes.
117117
///
118-
/// The notification userInfo dict will contain they `.oldMemoryKey`,
119-
/// .newMemoryKey` and `.changesKey` keys.
118+
/// The notification userInfo dict will contain the `.oldMemoryKey`,
119+
/// `.newMemoryKey` and `.changesKey` keys.
120120
public static let memoryDidChangeNotification: NSNotification.Name = NSNotification.Name("FootprintMemoryDidChangeNotification")
121121

122122
/// Key for the previous value of the memory state in the the
123123
/// `.stateDidChangeNotification` userInfo object.
124-
/// Type is `Footprint.Memory`.
124+
/// Value type is `Footprint.Memory`.
125125
public static let oldMemoryKey: String = "oldMemory"
126126

127-
/// Key for the new value of the memory statein the the `.stateDidChangeNotification`
128-
/// userInfo object. Type is `Footprint.Memory`.
127+
/// Key for the new value of the memory state in the the `.stateDidChangeNotification`
128+
/// userInfo object. Value type is `Footprint.Memory`.
129129
public static let newMemoryKey: String = "newMemory"
130130

131131
/// Key for the changes of the memory in the the `.stateDidChangeNotification`
132-
/// userInfo object. Type is `Set<ChangeType>`
132+
/// userInfo object. Value type is `Set<ChangeType>`
133133
public static let changesKey: String = "changes"
134134

135135
/// Types of changes possible

0 commit comments

Comments
 (0)