1
0
mirror of https://github.com/danog/dns.git synced 2024-11-30 04:29:06 +01:00

Update README.md

Change incorrect usage of "parallel" to "concurrent"
This commit is contained in:
Daniel Lowrey 2014-10-02 12:29:03 -04:00
parent 989a43a787
commit 704c35870c

View File

@ -6,7 +6,7 @@ Asynchronous DNS resolution built on the [Amp](https://github.com/amphp/amp) con
## Examples
**Synchronous via `wait()`**
**Synchronous Resolution Via `wait()`**
```php
<?php
@ -18,7 +18,7 @@ list($address, $type) = $resolver->resolve($name)->wait();
printf("%s resolved to %s\n", $name, $address);
```
**Parallel Synchronous via `wait()`**
**Concurrent Synchronous Resolution Via `wait()`**
```php
<?php