Skip to content

Commit 72c639e

Browse files
committed
Fix syntax
1 parent 8bd94b6 commit 72c639e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DiffableDataSourceSnapshot.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// A class for backporting `NSDiffableDataSourceSnapshot` introduced in iOS 13.0+, macOS 10.15+, tvOS 13.0+.
22
/// Represents the mutable state of diffable data source of UI.
3-
public struct DiffableDataSourceSnapshot<SectionIdentifierType, ItemIdentifierType> where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable {
3+
public struct DiffableDataSourceSnapshot<SectionIdentifierType: Hashable, ItemIdentifierType: Hashable> {
44
internal var structure = SnapshotStructure<SectionIdentifierType, ItemIdentifierType>()
55

66
/// Creates a new empty snapshot object.

0 commit comments

Comments
 (0)