Skip to content

Commit 8b8635e

Browse files
committed
updated
1 parent 65e0873 commit 8b8635e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Sources/AdvancedCollectionTableView-iOS/Shared/ContentConfigurationView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import UIKit
99

10-
/// A view that displays the content view of a `UIContentConfiguration`.
10+
/// A view that displays the content view of an `UIContentConfiguration`.
1111
class ContentConfigurationView: UIView {
1212

1313
/// The content view.

Sources/AdvancedCollectionTableView-iOS/Shared/DiffableDataSourceSnapshotApplyOption.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ public enum DiffableDataSourceSnapshotApplyOption: Hashable, Sendable {
1212
/**
1313
The snapshot gets applied animated.
1414

15-
The data source computes a diff of the previous and new state and applies the new state animated with a default animation duration. Any ongoing item animations are interrupted and the content is reloaded immediately.
15+
The data source computes a diff of the previous and new state and applies the updates to the receiver animated with a default animation duration.
1616
*/
1717
public static var animated: Self { .animated(duration: noAnimationDuration) }
1818

1919
/**
2020
The snapshot gets applied animiated with the specified animation duration.
21-
22-
The data source computes a diff of the previous and new state and applies the new state animated with the specified animation duration. Any ongoing item animations are interrupted and the content is reloaded immediately.
21+
22+
The data source computes a diff of the previous and new state and applies the updates to the receiver animated with the specified animation duration.
2323
*/
2424
case animated(duration: TimeInterval)
2525

@@ -32,7 +32,7 @@ public enum DiffableDataSourceSnapshotApplyOption: Hashable, Sendable {
3232
/**
3333
The snapshot gets applied without any animation.
3434

35-
The data source computes a diff of the previous and new state and applies the new state non animated. Any ongoing item animations are interrupted and the content is reloaded immediately.
35+
The data source computes a diff of the previous and new state and applies the updates to the receiver without any animation.
3636
*/
3737
case withoutAnimation
3838

0 commit comments

Comments
 (0)