onevcat vor 5 Jahren
Ursprung
Commit
d42d933169
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Sources/SwiftUI/KFImage.swift

+ 1 - 1
Sources/SwiftUI/KFImage.swift

@@ -108,7 +108,7 @@ public struct KFImage: View {
 
     /// Starts the loading process of `self` immediately.
     ///
-    /// By default, a `KFImage` will not load its source until its `onAppear` is called. This is a lazily loading
+    /// By default, a `KFImage` will not load its source until the `onAppear` is called. This is a lazily loading
     /// behavior and provides better performance. However, when you refresh the view, the lazy loading also causes a
     /// flickering since the loading does not happen immediately. Call this method if you want to start the load at once
     /// could help avoiding the flickering, with some performance trade-off.