Skip to content

Commit d68b1e0

Browse files
fix typos from begining to beginning
1 parent e8baab9 commit d68b1e0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

library/src/actions/email/email.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ describe('email', () => {
7676

7777
// Start of local part
7878

79-
test('for underscore in begining of local part', () => {
79+
test('for underscore in beginning of local part', () => {
8080
expectNoActionIssue(action, ['_email@example.com']);
8181
});
8282

83-
test('for hyphen in begining of local part', () => {
83+
test('for hyphen in beginning of local part', () => {
8484
expectNoActionIssue(action, ['-email@example.com']);
8585
});
8686

87-
test('for plus in begining of local part', () => {
87+
test('for plus in beginning of local part', () => {
8888
expectNoActionIssue(action, ['+email@example.com']);
8989
});
9090

library/src/actions/rfcEmail/rfcEmail.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ describe('rfcEmail', () => {
8080

8181
// Start of local part
8282

83-
test('for underscore in begining of local part', () => {
83+
test('for underscore in beginning of local part', () => {
8484
expectNoActionIssue(action, ['_email@example.com']);
8585
});
8686

87-
test('for hyphen in begining of local part', () => {
87+
test('for hyphen in beginning of local part', () => {
8888
expectNoActionIssue(action, ['-email@example.com']);
8989
});
9090

91-
test('for plus in begining of local part', () => {
91+
test('for plus in beginning of local part', () => {
9292
expectNoActionIssue(action, ['+email@example.com']);
9393
});
9494

0 commit comments

Comments
 (0)