Skip to content

Commit

Permalink
typos (spatie#31)
Browse files Browse the repository at this point in the history
just a couple of typos and a word order change.

@freekmurze I'll probably be using V2 in a small project that I'll show on the 14th. So our talks should dovetail nicely.
  • Loading branch information
blueclock authored and freekmurze committed Dec 2, 2016
1 parent a483352 commit bd0c537
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public function hasBeenCrawled(Url $url, ResponseInterface $response, Url $found
public function finishedCrawling();
```

### Filtering certain url's
### Filtering certain urls

You can tell the crawler not to visit certain url's by passing using the `setCrawlProfile`-function. That function expects
You can tell the crawler not to visit certain urls by passing using the `setCrawlProfile`-function. That function expects
an objects that implements the `Spatie\Crawler\CrawlProfile`-interface:

```php
Expand All @@ -77,7 +77,7 @@ public function shouldCrawl(Url $url): bool;

## Setting the number of concurrent requests

To improve the speed of the crawl the package will by default currently crawl 10 urls. If you want to change that number you can use the `setConcurrency` method.
To improve the speed of the crawl the package concurrently crawls 10 urls by default. If you want to change that number you can use the `setConcurrency` method.

```php
Crawler::create()
Expand Down

0 comments on commit bd0c537

Please sign in to comment.