Skip to content

Commit c902835

Browse files
authored
Fix grammar typos (#144)
Changed "whomever" to "whoever". The former matches a sentence's object (like "him"), whereas the latter its subject (like "he"). This is like fixing "him submitted" to "he submitted."
1 parent 3a911d0 commit c902835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const rejectionValues: RejectionTemplate[] = [
2828
key: 'no-license',
2929
enumValue: { name: 'No license', value: 'no-license' },
3030
prettyValue: 'No license',
31-
execute: ({ user }: RejectionParams) => `${user}, your project has been rejected because does not contain a valid LICENSE, LICENSE.txt or LICENSE.md file. Please add a license to your project and then resubmit. See <https://choosealicense.com/> for more information`,
31+
execute: ({ user }: RejectionParams) => `${user}, your project has been rejected because it does not contain a valid LICENSE, LICENSE.txt or LICENSE.md file. Please add a license to your project and then resubmit. See <https://choosealicense.com/> for more information`,
3232
location: () => 'thread'
3333
},
3434
{
@@ -63,7 +63,7 @@ const rejectionValues: RejectionTemplate[] = [
6363
key: 'invalid-id',
6464
enumValue: { name: 'Invalid user ID', value: 'invalid-id' },
6565
prettyValue: 'Invalid user ID',
66-
execute: ({ name }: RejectionParams) => `To whomever submitted "${name}", the provided ID was invalid. Please provide us with your ID so we can process your submission. For help with getting your ID, see <https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID->`,
66+
execute: ({ name }: RejectionParams) => `To whoever submitted "${name}", the provided ID was invalid. Please provide us with your ID so we can process your submission. For help with getting your ID, see <https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID->`,
6767
location: () => 'public'
6868
},
6969
{

0 commit comments

Comments
 (0)