Fix typo in SubscribeEvent method.

This commit is contained in:
2026-03-29 21:13:46 +03:00
parent faaadbf5b1
commit 9dc6175f8b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ namespace Dashboard.Windowing
/// </summary> /// </summary>
/// <param name="listener">The event listener instance.</param> /// <param name="listener">The event listener instance.</param>
/// <returns>An unsubscription token.</returns> /// <returns>An unsubscription token.</returns>
public void SubcribeEvent(IEventListener listener); public void SubscribeEvent(IEventListener listener);
/// <summary> /// <summary>
/// Unsubscribe from events in from this window. /// Unsubscribe from events in from this window.
+1 -1
View File
@@ -121,7 +121,7 @@ namespace Dashboard.OpenTK.PAL2
return args; return args;
} }
public void SubcribeEvent(IEventListener listener) public void SubscribeEvent(IEventListener listener)
{ {
lock (_listeners) lock (_listeners)
{ {