Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 24, 2021
1 parent 3b4f9f8 commit 34c35c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};

Expand Down

0 comments on commit 34c35c4

Please sign in to comment.