Skip to content

Commit 75710aa

Browse files
committed
updated documentation
1 parent c192fa9 commit 75710aa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,10 @@ function balance($accountNumber)
9696
return $value;
9797
}
9898

99-
$async = new Async();
100-
$async->await(balance(0))->then('var_export');
99+
Async::await(balance(0))->then('var_export');
101100
```
102101

103-
Now the code is clean and looks like synchronous, but runs asynchronously for better performance getting us
102+
Now the code is clean and looks synchronous, but runs asynchronously for better performance getting us
104103
best of both worlds :)
105104

106105
For more examples and integration with the frameworks take a look at [examples folder](examples)

0 commit comments

Comments
 (0)