diff --git a/Terminal.Gui/Core.cs b/Terminal.Gui/Core.cs
index 72b5085b8..96f6f38be 100644
--- a/Terminal.Gui/Core.cs
+++ b/Terminal.Gui/Core.cs
@@ -1985,7 +1985,7 @@ namespace Terminal.Gui {
///
/// See also
///
- static public event EventHandler Iteration;
+ public static event EventHandler Iteration;
///
/// Returns a rectangle that is centered in the screen for the provided size.
@@ -2219,7 +2219,7 @@ namespace Terminal.Gui {
///
/// Merely a debugging aid to see the raw mouse events
///
- static public Action RootMouseEvent;
+ public static Action RootMouseEvent;
internal static View wantContinuousButtonPressedView;
static View lastMouseOwnerView;
@@ -2284,7 +2284,7 @@ namespace Terminal.Gui {
/// This event is fired once when the application is first loaded. The dimensions of the
/// terminal are provided.
///
- static public event EventHandler Loaded;
+ public static event EventHandler Loaded;
///
/// Building block API: Prepares the provided toplevel for execution.
@@ -2299,7 +2299,7 @@ namespace Terminal.Gui {
/// the method, and then the method upon termination which will
/// undo these changes.
///
- static public RunState Begin (Toplevel toplevel)
+ public static RunState Begin (Toplevel toplevel)
{
if (toplevel == null)
throw new ArgumentNullException (nameof (toplevel));
@@ -2333,7 +2333,7 @@ namespace Terminal.Gui {
/// Building block API: completes the execution of a Toplevel that was started with Begin.
///
/// The runstate returned by the method.
- static public void End (RunState runState)
+ public static void End (RunState runState)
{
if (runState == null)
throw new ArgumentNullException (nameof (runState));
@@ -2511,7 +2511,7 @@ namespace Terminal.Gui {
///
/// Invoked when the terminal was resized. The new size of the terminal is provided.
///
- static public event EventHandler Resized;
+ public static event EventHandler Resized;
static void TerminalResized ()
{