Skip to content

Commit 2b339e2

Browse files
committed
fix(docs, api): correct Tranco site count from 100M to 1M
1 parent 9407f5c commit 2b339e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ This is useful for understanding the history of a site, and how it has changed o
654654
<img width="300" src="https://i.ibb.co/nkbczgb/Screenshot-from-2023-08-14-22-02-40.png" align="right" />
655655

656656
###### Description
657-
This check shows the global rank of the requested site. This is only accurate for websites which are in the top 100 million list. We're using data from the Tranco project (see below), which collates the top sites on the web from Umbrella, Majestic, Quantcast, the Chrome User Experience Report and Cloudflare Radar.
657+
This check shows the global rank of the requested site. This is only accurate for websites which are in the top 1 million list. We're using data from the Tranco project (see below), which collates the top sites on the web from Umbrella, Majestic, Quantcast, the Chrome User Experience Report and Cloudflare Radar.
658658

659659
###### Use Cases
660660
Knowing a websites overall global rank can be useful for understanding the scale of the site, and for comparing it to other sites. It can also be useful for understanding the relative popularity of a site, and for identifying potential trends.

api/rank.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const rankHandler = async (url) => {
1313
`https://tranco-list.eu/api/ranks/domain/${domain}`, { timeout: 5000 }, auth,
1414
);
1515
if (!response.data || !response.data.ranks || response.data.ranks.length === 0) {
16-
return { skipped: `Skipping, as ${domain} isn't ranked in the top 100 million sites yet.`};
16+
return { skipped: `Skipping, as ${domain} isn't ranked in the top 1 million sites yet.`};
1717
}
1818
return response.data;
1919
} catch (error) {

src/web-check-live/utils/docs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ const docs: Doc[] = [
446446
{
447447
id: 'rank',
448448
title: 'Global Ranking',
449-
description: 'This check shows the global rank of the requested site. This is only accurate for websites which are in the top 100 million list. We\'re using data from the Tranco project (see below), which collates the top sites on the web from Umbrella, Majestic, Quantcast, the Chrome User Experience Report and Cloudflare Radar.',
449+
description: 'This check shows the global rank of the requested site. This is only accurate for websites which are in the top 1 million list. We\'re using data from the Tranco project (see below), which collates the top sites on the web from Umbrella, Majestic, Quantcast, the Chrome User Experience Report and Cloudflare Radar.',
450450
use: 'Knowing a websites overall global rank can be useful for understanding the scale of the site, and for comparing it to other sites. It can also be useful for understanding the relative popularity of a site, and for identifying potential trends.',
451451
resources: [
452452
{ title: 'Tranco List', link: 'https://tranco-list.eu/' },

0 commit comments

Comments
 (0)