Skip to content

Commit 515ea73

Browse files
committed
Fix typo
1 parent c96edf4 commit 515ea73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

en/tutorials/async-await.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ UIImageView extension {
702702
}
703703
```
704704
705-
The `imageLoader` will move the job to the backgroud thread. Although `setImage` is taken out of the main thread, after `await` execution **may** continue to the backgrounder. We fix this by adding `@MainActor`.
705+
The `imageLoader` will move the job to the background thread. Although `setImage` is taken out of the main thread, after `await` execution **may** continue to the backgrounder. We fix this by adding `@MainActor`.
706706
The caching is done. Let's do an undo. Let's look at the cell implementation (I'm skipping the layout):
707707
708708
```swift

en/tutorials/product-page-optimization-alternative-icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The alternative icon is done in multiple resolutions, just like the main icon. I
1010

1111
## Settings in Target.
1212

13-
You need Xcode 13 or higher. Select the app targetet and go to the `Build Settings` tab. In the search, type `App Icon` and you will see the `Asset Catalog Compiler` section.
13+
You need Xcode 13 or higher. Select the app targeted and go to the `Build Settings` tab. In the search, type `App Icon` and you will see the `Asset Catalog Compiler` section.
1414

1515
![Settings in target](https://cdn.ivanvorobei.by/websites/sparrowcode.io/product-page-optimization-alternative-icons/adding-settings-to-target.png)
1616

0 commit comments

Comments
 (0)