From 34c35c49e7ff28f31492372d4b1cc4bc94b3dbea Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 24 Jan 2021 23:23:51 +0700 Subject: [PATCH] Minor tweaks --- index.d.ts | 6 +++--- readme.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.d.ts b/index.d.ts index 90d3d00..a5f2623 100644 --- a/index.d.ts +++ b/index.d.ts @@ -31,9 +31,9 @@ import got = require('got'); }; const sites = { - ava: fetch('avajs.dev'), - todomvc: fetch('todomvc.com'), - github: fetch('github.com'), + ava: fetch('https://avajs.dev'), + todomvc: fetch('https://todomvc.com'), + github: fetch('https://github.com'), foo: 'bar' }; diff --git a/readme.md b/readme.md index 678106f..61cad51 100644 --- a/readme.md +++ b/readme.md @@ -23,9 +23,9 @@ const got = require('got'); }; const sites = { - ava: fetch('avajs.dev'), - todomvc: fetch('todomvc.com'), - github: fetch('github.com'), + ava: fetch('https://avajs.dev'), + todomvc: fetch('https://todomvc.com'), + github: fetch('https://github.com'), foo: 'bar' };