diff --git a/Terminal.Gui/Core.cs b/Terminal.Gui/Core.cs
index 965441ceb..c06e122b2 100644
--- a/Terminal.Gui/Core.cs
+++ b/Terminal.Gui/Core.cs
@@ -188,7 +188,7 @@ namespace Terminal.Gui {
public ustring Id { get; set; } = "";
///
- /// Gets or sets a value indicating whether this want mouse position reports.
+ /// Gets or sets a value indicating whether this want mouse position reports.
///
/// true if want mouse position reports; otherwise, false.
public virtual bool WantMousePositionReports { get; set; } = false;
@@ -242,7 +242,7 @@ namespace Terminal.Gui {
public View SuperView => container;
///
- /// Initializes a new instance of the class with the specified frame. This is the default constructor.
+ /// Initializes a new instance of the class with the specified frame. This is the default constructor.
///
/// The region covered by this view.
public View (Rect frame)
@@ -542,7 +542,7 @@ namespace Terminal.Gui {
}
///
- /// Gets or sets a value indicating whether this has focus.
+ /// Gets or sets a value indicating whether this has focus.
///
/// true if has focus; otherwise, false.
public override bool HasFocus {
@@ -848,9 +848,9 @@ namespace Terminal.Gui {
}
///
- /// Returns a that represents the current .
+ /// Returns a that represents the current .
///
- /// A that represents the current .
+ /// A that represents the current .
public override string ToString ()
{
return $"{GetType ().Name}({Id})({Frame})";
@@ -874,7 +874,7 @@ namespace Terminal.Gui {
public bool Running;
///
- /// Initializes a new instance of the class.
+ /// Initializes a new instance of the class.
///
/// Frame.
public Toplevel (Rect frame) : base (frame)
@@ -964,7 +964,7 @@ namespace Terminal.Gui {
}
///
- /// Initializes a new instance of the class with an optioanl title
+ /// Initializes a new instance of the class with an optioanl title
///
/// Frame.
/// Title.
@@ -974,7 +974,7 @@ namespace Terminal.Gui {
int padding;
///
- /// Initializes a new instance of the with
+ /// Initializes a new instance of the with
/// the specified frame for its location, with the specified border
/// an optional title.
///
@@ -1210,13 +1210,13 @@ namespace Terminal.Gui {
internal Toplevel Toplevel;
///
- /// Releases all resource used by the object.
+ /// Releases all resource used by the object.
///
- /// Call when you are finished using the . The
- /// method leaves the in an unusable state. After
+ /// Call when you are finished using the . The
+ /// method leaves the in an unusable state. After
/// calling , you must release all references to the
- /// so the garbage collector can reclaim the memory that the
- /// was occupying.
+ /// so the garbage collector can reclaim the memory that the
+ /// was occupying.
public void Dispose ()
{
Dispose (true);
diff --git a/Terminal.Gui/Event.cs b/Terminal.Gui/Event.cs
index f1a0f2528..640576c9a 100644
--- a/Terminal.Gui/Event.cs
+++ b/Terminal.Gui/Event.cs
@@ -431,9 +431,9 @@ namespace Terminal.Gui {
public MouseFlags Flags;
///
- /// Returns a that represents the current .
+ /// Returns a that represents the current .
///
- /// A that represents the current .
+ /// A that represents the current .
public override string ToString()
{
return $"({X},{Y}:{Flags}";
diff --git a/Terminal.Gui/Views/Button.cs b/Terminal.Gui/Views/Button.cs
index 27249d398..430eb9895 100644
--- a/Terminal.Gui/Views/Button.cs
+++ b/Terminal.Gui/Views/Button.cs
@@ -32,7 +32,7 @@ namespace Terminal.Gui {
bool is_default;
///
- /// Gets or sets a value indicating whether this is the default action to activate on return on a dialog.
+ /// Gets or sets a value indicating whether this is the default action to activate on return on a dialog.
///
/// true if is default; otherwise, false.
public bool IsDefault {
diff --git a/Terminal.Gui/Views/Dialog.cs b/Terminal.Gui/Views/Dialog.cs
index fb3800906..26e376f61 100644
--- a/Terminal.Gui/Views/Dialog.cs
+++ b/Terminal.Gui/Views/Dialog.cs
@@ -19,7 +19,7 @@ namespace Terminal.Gui {
const int padding = 1;
///
- /// Initializes a new instance of the class with an optional set of buttons to display
+ /// Initializes a new instance of the class with an optional set of buttons to display
///
/// Title for the dialog.
/// Width for the dialog.
diff --git a/Terminal.Gui/Views/FrameView.cs b/Terminal.Gui/Views/FrameView.cs
index 9db4a82da..f2d15077a 100644
--- a/Terminal.Gui/Views/FrameView.cs
+++ b/Terminal.Gui/Views/FrameView.cs
@@ -34,7 +34,7 @@ namespace Terminal.Gui {
}
///
- /// Initializes a new instance of the class with
+ /// Initializes a new instance of the class with
/// a title.
///
/// Frame.
diff --git a/Terminal.Gui/Views/Menu.cs b/Terminal.Gui/Views/Menu.cs
index be2dcbc5c..b5deb71c4 100644
--- a/Terminal.Gui/Views/Menu.cs
+++ b/Terminal.Gui/Views/Menu.cs
@@ -19,7 +19,7 @@ namespace Terminal.Gui {
public class MenuItem {
///
- /// Initializes a new .
+ /// Initializes a new .
///
/// Title for the menu item.
/// Help text to display.
@@ -272,7 +272,7 @@ namespace Terminal.Gui {
///
- /// Initializes a new instance of the class with the specified set of toplevel menu items.
+ /// Initializes a new instance of the class with the specified set of toplevel menu items.
///
/// Menus.
public MenuBar (MenuBarItem [] menus) : base (new Rect (0, 0, Application.Driver.Cols, 1))
diff --git a/Terminal.Gui/Views/RadioGroup.cs b/Terminal.Gui/Views/RadioGroup.cs
index f6318b53c..5f07709cb 100644
--- a/Terminal.Gui/Views/RadioGroup.cs
+++ b/Terminal.Gui/Views/RadioGroup.cs
@@ -7,7 +7,7 @@ namespace Terminal.Gui {
int selected, cursor;
///
- /// Initializes a new instance of the class
+ /// Initializes a new instance of the class
/// setting up the initial set of radio labels and the item that should be selected.
///
/// Boundaries for the radio group.
@@ -29,7 +29,7 @@ namespace Terminal.Gui {
return new Rect (x, y, width, radioLabels.Length);
}
///
- /// Initializes a new instance of the class
+ /// Initializes a new instance of the class
/// setting up the initial set of radio labels and the item that should be selected,
/// the view frame is computed from the provided radioLabels.
///
diff --git a/Terminal.Gui/Views/ScrollView.cs b/Terminal.Gui/Views/ScrollView.cs
index 98ae6c0f8..68a4caafb 100644
--- a/Terminal.Gui/Views/ScrollView.cs
+++ b/Terminal.Gui/Views/ScrollView.cs
@@ -49,7 +49,7 @@ namespace Terminal.Gui {
}
///
- /// Initializes a new instance of the class.
+ /// Initializes a new instance of the class.
///
/// Frame for the scrollbar.
/// The size that this scrollbar represents.