diff --git a/Terminal.Gui/Core/Window.cs b/Terminal.Gui/Core/Window.cs
index 5d08d608f..795d360ec 100644
--- a/Terminal.Gui/Core/Window.cs
+++ b/Terminal.Gui/Core/Window.cs
@@ -7,7 +7,7 @@
// - FrameView Does not support padding (but should)
// - FrameView Does not support mouse dragging
// - FrameView Does not support IEnumerable
-// Any udpates done here should probably be done in FrameView as well; TODO: Merge these classes
+// Any updates done here should probably be done in FrameView as well; TODO: Merge these classes
using System;
using System.Collections;
@@ -308,7 +308,6 @@ namespace Terminal.Gui {
ClearNeedsDisplay ();
Driver.SetAttribute (GetNormalColor ());
- Border.Title = Title; // not sure why Title is getting un-set
Border.DrawContent (this, false);
}
@@ -346,7 +345,7 @@ namespace Terminal.Gui {
}
///
- /// Event arguments for chane events.
+ /// Event arguments for change events.
///
public class TitleEventArgs : EventArgs {
///
@@ -360,7 +359,7 @@ namespace Terminal.Gui {
public ustring OldTitle { get; set; }
///
- /// Flag which allows cancelling the Title change.
+ /// Flag which allows canceling the Title change.
///
public bool Cancel { get; set; }
@@ -380,7 +379,7 @@ namespace Terminal.Gui {
///
/// The that is/has been replaced.
/// The new to be replaced.
- /// `true` if an event handler cancelled the Title change.
+ /// `true` if an event handler canceled the Title change.
public virtual bool OnTitleChanging (ustring oldTitle, ustring newTitle)
{
var args = new TitleEventArgs (oldTitle, newTitle);