Skip to content

Commit c6528d4

Browse files
committed
Fix typos in README.md
1 parent 85cfddf commit c6528d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ let package = Package(
5454
)
5555
```
5656

57-
#### 2️⃣ Create icon view in the library taget, using SwiftUI
57+
#### 2️⃣ Create an icon view in the library target, using SwiftUI
5858

5959
Just create a new SwiftUI view in the library target:
6060

@@ -87,11 +87,11 @@ struct MyAppIconView_Preivews: PreviewProvider {
8787
}
8888
```
8989

90-
Make sure your have selected the build scheme connected with your library target (`MyAppIcon` in this example).
90+
Make sure you have selected the build scheme connected with your library target (`MyAppIcon` in this example).
9191

9292
You should be able to live-preview the icon in Xcode previews.
9393

94-
You can adjust the `configs` parameter to specify which types of the icon you want to preview. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
94+
You can adjust the `configs` parameter to specify which types of icons you want to preview. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
9595

9696
#### 4️⃣ Add exporting code to the executable target
9797

@@ -109,9 +109,9 @@ let exportURL = FileManager.default.homeDirectoryForCurrentUser.appendingPathCom
109109
images.forEach { $0.save(to: exportURL) }
110110
```
111111

112-
You can adjust the `configs` variable to specify which types of the icon you want to export. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
112+
You can adjust the `configs` variable to specify which types of icons you want to export. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
113113

114-
In above example the images will be exported to `MyAppIcon` directory on current user's desktop. Feel free to adjust the `exportURL` variable to your needs.
114+
In the above example, the images will be exported to `MyAppIcon` directory on the current user's desktop. Feel free to adjust the `exportURL` variable to your needs.
115115

116116
#### 5️⃣ Run the executable from Xcode to export your icon images
117117

0 commit comments

Comments
 (0)