From 54b51f900fd11c9853a1f00a589318365d26601b Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 20 Mar 2021 10:34:35 +0700 Subject: [PATCH] Meta tweaks --- index.d.ts | 4 ++-- index.test-d.ts | 2 +- readme.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.d.ts b/index.d.ts index bcbe0af..47aa9ba 100644 --- a/index.d.ts +++ b/index.d.ts @@ -41,7 +41,7 @@ import got = require('got'); const sites = [ getWebsiteFromUsername('https://sindresorhus'), //=> Promise - 'https://ava.li', + 'https://avajs.dev', 'https://github.com' ]; @@ -54,7 +54,7 @@ const sites = [ const result = await pMap(sites, mapper, {concurrency: 2}); console.log(result); - //=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/'] + //=> ['https://sindresorhus.com/', 'https://avajs.dev/', 'https://github.com/'] })(); ``` */ diff --git a/index.test-d.ts b/index.test-d.ts index c7da912..473f6cd 100644 --- a/index.test-d.ts +++ b/index.test-d.ts @@ -4,7 +4,7 @@ import {Options, Mapper} from '.'; const sites = [ 'https://sindresorhus.com', - 'https://ava.li', + 'https://avajs.dev', 'https://github.com' ]; diff --git a/readme.md b/readme.md index e5ec538..1b8a679 100644 --- a/readme.md +++ b/readme.md @@ -20,7 +20,7 @@ const got = require('got'); const sites = [ getWebsiteFromUsername('https://sindresorhus'), //=> Promise - 'https://ava.li', + 'https://avajs.dev', 'https://github.com' ]; @@ -33,7 +33,7 @@ const sites = [ const result = await pMap(sites, mapper, {concurrency: 2}); console.log(result); - //=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/'] + //=> ['https://sindresorhus.com/', 'https://avajs.dev/', 'https://github.com/'] })(); ```