Skip to content

Commit 68647db

Browse files
authored
Fix typo in SwiftConcurrency.md (#2644)
1 parent 8932598 commit 68647db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/SwiftConcurrency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ stream.asObservable()
6666

6767
### Wrapping an `async` result as a `Single`
6868

69-
If you already have an async piece of work that returns a single result you wish to await, you can bridge it back to the Rx wordl by using `Single.create`, a special overload which takes an `async throws` closure where you can simply await your async work:
69+
If you already have an async piece of work that returns a single result you wish to await, you can bridge it back to the Rx world by using `Single.create`, a special overload which takes an `async throws` closure where you can simply await your async work:
7070

7171
```swift
72-
func doIncredibleWork() async throws -> AmazingRespones {
72+
func doIncredibleWork() async throws -> AmazingResponse {
7373
...
7474
}
7575

0 commit comments

Comments
 (0)