diff --git a/Dashboard.Common/Windowing/IWindow.cs b/Dashboard.Common/Windowing/IWindow.cs index e812800..8a691fc 100644 --- a/Dashboard.Common/Windowing/IWindow.cs +++ b/Dashboard.Common/Windowing/IWindow.cs @@ -37,7 +37,7 @@ namespace Dashboard.Windowing /// /// The event listener instance. /// An unsubscription token. - public void SubcribeEvent(IEventListener listener); + public void SubscribeEvent(IEventListener listener); /// /// Unsubscribe from events in from this window. diff --git a/Dashboard.OpenTK/PAL2/PhysicalWindow.cs b/Dashboard.OpenTK/PAL2/PhysicalWindow.cs index 2cca335..54137b7 100644 --- a/Dashboard.OpenTK/PAL2/PhysicalWindow.cs +++ b/Dashboard.OpenTK/PAL2/PhysicalWindow.cs @@ -121,7 +121,7 @@ namespace Dashboard.OpenTK.PAL2 return args; } - public void SubcribeEvent(IEventListener listener) + public void SubscribeEvent(IEventListener listener) { lock (_listeners) {