Skip to content

Commit 87d8a1d

Browse files
committed
📝 :: Fix typos
1 parent bd7828f commit 87d8a1d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ If you prefer direct view composition, `GradientActivityIndicatorView` is a `UIV
194194

195195
### Usage
196196

197-
Store an instance as a property, set-up constraints and control the visibility using `fadeIn()` and `fadeOut()`.
197+
Store an instance as a property, set up constraints and control the visibility using `fadeIn()` and `fadeOut()`.
198198

199199
```swift
200200
final class UserProfileViewController: UIViewController {
@@ -264,7 +264,7 @@ gradientActivityIndicatorView.progressAnimationDuration = 4.5
264264
### Usage
265265

266266
```swift
267-
struct ContentView: some View {
267+
struct ContentView: View {
268268

269269
var body: some View {
270270
GradientLoadingBarView()
@@ -301,7 +301,7 @@ Control the visibility using standard SwiftUI view modifiers such as:
301301
Example with fade animation.
302302

303303
```swift
304-
struct ContentView: some View {
304+
struct ContentView: View {
305305

306306
@State
307307
private var isVisible = false

Sources/GradientLoadingBar/Config/UIColor+GradientLoadingBar.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public extension Color {
2626

2727
/// Color related configuration values for `GradientLoadingBar`.
2828
///
29-
/// - Note: Added in `UIColor` extension file, cause these values are derived from
30-
/// to the UIKit configuration values to ensure consistency across both frameworks.
29+
/// - Note: Added in `UIColor` extension file, because these values are derived from
30+
/// the UIKit configuration values to ensure consistency across both frameworks.
3131
enum GradientLoadingBar {
3232
/// The default color palette for the gradient colors.
3333
public static let gradientColors =

0 commit comments

Comments
 (0)