Skip to content

Commit 5580552

Browse files
committed
Improve spelling and wording
1 parent a273d7e commit 5580552

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/GtmExtension/GtmListener.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private void Initialize()
225225
}
226226
else
227227
{
228-
ShowError("We couldn't find gtm executable.");
228+
ShowError("Executable gtm could not be found.");
229229
return;
230230
}
231231

@@ -236,14 +236,14 @@ private void Initialize()
236236
return;
237237
}
238238

239-
// Unfroze status bar if it's frozen.
239+
// Unfreeze status bar if it's frozen.
240240
ErrorHandler.ThrowOnFailure(statusbar.IsFrozen(out var frozen));
241241
if (frozen != 0)
242242
{
243243
ErrorHandler.ThrowOnFailure(statusbar.FreezeOutput(0));
244244
}
245245

246-
// Subscribe to events. We keep the events object so that it doesn't get GC'ed.
246+
// Subscribe to events. We keep the event's object so that it doesn't get GC'ed.
247247
documentEvents = dte.Events.DocumentEvents;
248248
documentEvents.DocumentSaved += DocumentEvents_DocumentSaved;
249249
}

0 commit comments

Comments
 (0)