diff --git a/Exiled.API/Features/DynamicEvents/DynamicEventDispatcher.cs b/Exiled.API/Features/DynamicEvents/DynamicEventDispatcher.cs index 9a2a99351b..39d2e6df34 100644 --- a/Exiled.API/Features/DynamicEvents/DynamicEventDispatcher.cs +++ b/Exiled.API/Features/DynamicEvents/DynamicEventDispatcher.cs @@ -42,7 +42,7 @@ public DynamicEventDispatcher() /// This indexer allows access to bound listeners using an reference. /// /// The listener to look for. - /// The obund listener corresponding to the specified reference. + /// The bound listener corresponding to the specified reference. public KeyValuePair> this[object @object] => boundDelegates.FirstOrDefault(kvp => kvp.Key == @object); /// diff --git a/Exiled.API/Features/DynamicEvents/TDynamicEventDispatcher.cs b/Exiled.API/Features/DynamicEvents/TDynamicEventDispatcher.cs index 778d815454..70ec8b0fa6 100644 --- a/Exiled.API/Features/DynamicEvents/TDynamicEventDispatcher.cs +++ b/Exiled.API/Features/DynamicEvents/TDynamicEventDispatcher.cs @@ -43,7 +43,7 @@ public TDynamicEventDispatcher() /// This indexer allows access to bound listeners using an reference. /// /// The listener to look for. - /// The obund listener corresponding to the specified reference. + /// The bound listener corresponding to the specified reference. public KeyValuePair>> this[object @object] => boundDelegates.FirstOrDefault(kvp => kvp.Key == @object); ///