Skip to content

Commit 4dc91a4

Browse files
committed
Fixed misspelling in README.md
1 parent 1adce9c commit 4dc91a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ Inspired by [async library](https://github.com/caolan/async).
3333
For example there could be a case when your asynchronous calls depend each other to run so a naive solution could be nesting your calls like in the example below:
3434

3535
```swift
36-
import Ax
3736

3837
runAsync(afterSeconds: 2, completion: {
3938
let dataFromTask1 = 1
@@ -65,6 +64,7 @@ We should avoid this kind of code because it can lead to some really confusing a
6564
That is when it comes in play Ax, it helps you to call your async calls in a linear way giving the impression that you were running synchronous calls:
6665

6766
```swift
67+
import AX
6868

6969
var dataFromTask1 = 0
7070
var dataFromTask2 = 0

0 commit comments

Comments
 (0)