Skip to content

Commit

Permalink
Make show-open-prs-of-forks’s text more specific (#3896)
Browse files Browse the repository at this point in the history
  • Loading branch information
yakov116 committed Jan 17, 2021
1 parent 413a461 commit 34a6a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/features/show-open-prs-of-forks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import pluralize from '../helpers/pluralize';
import {getForkedRepo, getUsername, getRepo} from '../github-helpers';

function getLinkCopy(count: number): string {
return pluralize(count, 'one open pull request', '$$ open pull requests');
return pluralize(count, 'one open pull request', 'at least $$ open pull requests');
}

const countPRs = cache.function(async (forkedRepo: string): Promise<[prCount: number, singlePrNumber?: number]> => {
Expand Down

0 comments on commit 34a6a8e

Please sign in to comment.