Skip to content

Commit e6f326b

Browse files
authored
Fixes grammatical mistake
1 parent e16e67d commit e6f326b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/commands/gitCommands.actions.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export namespace GitActions {
239239

240240
if (files.length > 10) {
241241
const result = await window.showWarningMessage(
242-
`Are your sure you want to open the changes for all ${files.length} files?`,
242+
`Are you sure you want to open the changes for all ${files.length} files?`,
243243
{ title: 'Yes' },
244244
{ title: 'No', isCloseAffordance: true },
245245
);
@@ -279,7 +279,7 @@ export namespace GitActions {
279279

280280
if (files.length > 10) {
281281
const result = await window.showWarningMessage(
282-
`Are your sure you want to open the changes for all ${files.length} files?`,
282+
`Are you sure you want to open the changes for all ${files.length} files?`,
283283
{ title: 'Yes' },
284284
{ title: 'No', isCloseAffordance: true },
285285
);
@@ -326,7 +326,7 @@ export namespace GitActions {
326326

327327
if (files.length > 10) {
328328
const result = await window.showWarningMessage(
329-
`Are your sure you want to open the changes for all ${files.length} files?`,
329+
`Are you sure you want to open the changes for all ${files.length} files?`,
330330
{ title: 'Yes' },
331331
{ title: 'No', isCloseAffordance: true },
332332
);
@@ -605,7 +605,7 @@ export namespace GitActions {
605605

606606
if (files.length > 10) {
607607
const result = await window.showWarningMessage(
608-
`Are your sure you want to open all ${files.length} files?`,
608+
`Are you sure you want to open all ${files.length} files?`,
609609
{ title: 'Yes' },
610610
{ title: 'No', isCloseAffordance: true },
611611
);
@@ -651,7 +651,7 @@ export namespace GitActions {
651651

652652
if (files.length > 10) {
653653
const result = await window.showWarningMessage(
654-
`Are your sure you want to open all ${files.length} file revisions?`,
654+
`Are you sure you want to open all ${files.length} file revisions?`,
655655
{ title: 'Yes' },
656656
{ title: 'No', isCloseAffordance: true },
657657
);

src/views/viewCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ export class ViewCommands {
10011001

10021002
// if (files.length > 20) {
10031003
// const result = await window.showWarningMessage(
1004-
// `Are your sure you want to open all ${files.length} files?`,
1004+
// `Are you sure you want to open all ${files.length} files?`,
10051005
// { title: 'Yes' },
10061006
// { title: 'No', isCloseAffordance: true },
10071007
// );

0 commit comments

Comments
 (0)