diff --git a/Terminal.Gui/Core.cs b/Terminal.Gui/Core.cs index bbb021763..be23e01db 100644 --- a/Terminal.Gui/Core.cs +++ b/Terminal.Gui/Core.cs @@ -1006,7 +1006,6 @@ namespace Terminal.Gui { /// /// Computes the RelativeLayout for the view, given the frame for its container. - /// /// The Frame for the host. internal void RelativeLayout (Rect hostFrame) diff --git a/Terminal.Gui/Dialogs/FileDialog.cs b/Terminal.Gui/Dialogs/FileDialog.cs index 075a3d4af..2b1dbb82a 100644 --- a/Terminal.Gui/Dialogs/FileDialog.cs +++ b/Terminal.Gui/Dialogs/FileDialog.cs @@ -438,6 +438,7 @@ namespace Terminal.Gui { /// call Application.Run on the resulting instance. This will run the dialog modally, /// and when this returns, the FileName property will contain the selected value or /// null if the user canceled. + /// /// public class SaveDialog : FileDialog { public SaveDialog (ustring title, ustring message) : base (title, prompt: "Save", nameFieldLabel: "Save as:", message: message) diff --git a/Terminal.Gui/MonoCurses/mainloop.cs b/Terminal.Gui/MonoCurses/mainloop.cs index 8a7bc5778..98ba8aca1 100644 --- a/Terminal.Gui/MonoCurses/mainloop.cs +++ b/Terminal.Gui/MonoCurses/mainloop.cs @@ -320,6 +320,11 @@ namespace Mono.Terminal { internal List> idleHandlers = new List> (); IMainLoopDriver driver; + + /// + /// The current IMainLoopDriver in use. + /// + /// The driver. public IMainLoopDriver Driver => driver; /// diff --git a/Terminal.Gui/Views/TextView.cs b/Terminal.Gui/Views/TextView.cs index d91e7a362..8ac088bc3 100644 --- a/Terminal.Gui/Views/TextView.cs +++ b/Terminal.Gui/Views/TextView.cs @@ -234,7 +234,6 @@ namespace Terminal.Gui { /// /// /// - /// /// Control-y /// /// Pastes the content of the kill ring into the current position.