Skip to content

Commit

Permalink
Fix typos in some comments (#2459)
Browse files Browse the repository at this point in the history
Signed-off-by: wanxiangchwng <[email protected]>
  • Loading branch information
wanxiangchwng authored Aug 1, 2024
1 parent 0d20f5d commit 19e60c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Example/Example/AnimationPreviewView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct AnimationPreviewView: View {
Menu {
Menu {
option("Automatic", keyPath: \.renderingEngine, value: .automatic)
option("Core Animaiton", keyPath: \.renderingEngine, value: .coreAnimation)
option("Core Animation", keyPath: \.renderingEngine, value: .coreAnimation)
option("Main Thread", keyPath: \.renderingEngine, value: .mainThread)
} label: {
Text("Rendering Engine")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ extension Collection where Element: DiffableSection, Index == Int {

// MARK: - EpoxyEntry

/// A bookkeeping refrence type for the diffing algorithm.
/// A bookkeeping reference type for the diffing algorithm.
private final class EpoxyEntry {

// MARK: Internal
Expand Down
2 changes: 1 addition & 1 deletion Sources/Public/Animation/LottieAnimationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ open class LottieAnimationView: LottieAnimationViewBase {
}
}

// UIView Animation does not implicitly set CAAnimation time or timing fuctions.
// UIView Animation does not implicitly set CAAnimation time or timing functions.
// If layout is changed in an animation we must get the current animation duration
// and timing function and then manually create a CAAnimation to match the UIView animation.
// If layout is changed without animation, explicitly set animation duration to 0.0
Expand Down

0 comments on commit 19e60c9

Please sign in to comment.