Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Mar 4, 2023
1 parent c9d4792 commit e9ef9be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ImagePipeline.shared.rx.loadImage(with: url)

## Going From Low to High Resolution

Let's say you want to show a user a high-resolution image that takes a while to loads. You can show a spinner while the high-resolution image is downloaded, but you can improve the user experience by quickly downloading and displaying a thumbnail.
Let's say you want to show a user a high-resolution image that takes a while it loads. You can show a spinner while the high-resolution image is downloaded, but you can improve the user experience by quickly downloading and displaying a thumbnail.

> As an alternative, Nuke also supports progressive JPEG. To learn about it, see a [dedicated guide](/nuke/guides/progressive-decoding).
{:.info}
Expand All @@ -40,7 +40,7 @@ Observable.concat(pipeline.rx.loadImage(with: lowResUrl).orEmpty,
.disposed(by: disposeBag)
```

> `orEmpty` is a custom property which ignores errors and completes the sequence instead
> `orEmpty` is a custom property that ignores errors and completes the sequence instead
> (equivalent to `func catchErrorJustComplete()` from [RxSwiftExt](https://github.com/RxSwiftCommunity/RxSwiftExt).
{:.info}

Expand Down

0 comments on commit e9ef9be

Please sign in to comment.