Skip to content

Commit 54b51f9

Browse files
committed
Meta tweaks
1 parent 0b5f9a3 commit 54b51f9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import got = require('got');
4141
4242
const sites = [
4343
getWebsiteFromUsername('https://sindresorhus'), //=> Promise
44-
'https://ava.li',
44+
'https://avajs.dev',
4545
'https://github.com'
4646
];
4747
@@ -54,7 +54,7 @@ const sites = [
5454
const result = await pMap(sites, mapper, {concurrency: 2});
5555
5656
console.log(result);
57-
//=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/']
57+
//=> ['https://sindresorhus.com/', 'https://avajs.dev/', 'https://github.com/']
5858
})();
5959
```
6060
*/

index.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Options, Mapper} from '.';
44

55
const sites = [
66
'https://sindresorhus.com',
7-
'https://ava.li',
7+
'https://avajs.dev',
88
'https://github.com'
99
];
1010

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const got = require('got');
2020

2121
const sites = [
2222
getWebsiteFromUsername('https://sindresorhus'), //=> Promise
23-
'https://ava.li',
23+
'https://avajs.dev',
2424
'https://github.com'
2525
];
2626

@@ -33,7 +33,7 @@ const sites = [
3333
const result = await pMap(sites, mapper, {concurrency: 2});
3434

3535
console.log(result);
36-
//=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/']
36+
//=> ['https://sindresorhus.com/', 'https://avajs.dev/', 'https://github.com/']
3737
})();
3838
```
3939

0 commit comments

Comments
 (0)