Skip to content

Commit

Permalink
fix: incorrect syntax for crawler output in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Jan 6, 2023
1 parent 875d295 commit fb672f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databox/docs/basics/crawler.md
Expand Up @@ -18,7 +18,7 @@ const crawler = new Crawler(async context => {
Crawlers automatically create a local [Table] to cache results. This means you can re-use the last Crawl by default. A desired "age" can be specified by including a `maxTimeInCache` parameter. Omitting will cause a new crawl to initiate.

```js
const crawl = await crawler.stream({ input: { maxTimeInCache: 60 } });
const [crawl] = await crawler.stream({ input: { maxTimeInCache: 60 } });
const heroReplay = await HeroReplay(crawl);
```

Expand Down

0 comments on commit fb672f9

Please sign in to comment.