Skip to content

Commit 66320c7

Browse files
committed
chore: fix typo
1 parent 70258e1 commit 66320c7

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/run.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ export const run = async (username?: string) => {
1212
return process.exit(1);
1313
}
1414

15-
const gitHubStatus = await fetchGitHubStats(username);
15+
const gitHubStats = await fetchGitHubStats(username);
1616

1717
console.info(
1818
`
1919
${blue('Streak')}
20-
Best ${yellow(gitHubStatus.bestStreak)}
21-
Current ${yellow(gitHubStatus.currentStreak)}
22-
Previous ${yellow(gitHubStatus.previousStreak)}
20+
Best ${yellow(gitHubStats.bestStreak)}
21+
Current ${yellow(gitHubStats.currentStreak)}
22+
Previous ${yellow(gitHubStats.previousStreak)}
2323
`,
2424
);
2525

2626
console.info(
2727
` ${blue('Contributions')}
28-
Most ${yellow(gitHubStatus.mostContributions)}
29-
Today ${yellow(gitHubStatus.todaysContributions)}
30-
Total ${yellow(gitHubStatus.totalContributions)}`,
28+
Most ${yellow(gitHubStats.mostContributions)}
29+
Today ${yellow(gitHubStats.todaysContributions)}
30+
Total ${yellow(gitHubStats.totalContributions)}`,
3131
);
3232

3333
return process.exit(0);

0 commit comments

Comments
 (0)