Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
NaoUnderscore committed Feb 3, 2024
1 parent 0348dbb commit 1dac1ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public DynamicEventDispatcher()
/// This indexer allows access to bound listeners using an <see cref="object"/> reference.
/// </summary>
/// <param name="object">The listener to look for.</param>
/// <returns>The obund listener corresponding to the specified reference.</returns>
/// <returns>The bound listener corresponding to the specified reference.</returns>
public KeyValuePair<object, List<Action>> this[object @object] => boundDelegates.FirstOrDefault(kvp => kvp.Key == @object);

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public TDynamicEventDispatcher()
/// This indexer allows access to bound listeners using an <see cref="object"/> reference.
/// </summary>
/// <param name="object">The listener to look for.</param>
/// <returns>The obund listener corresponding to the specified reference.</returns>
/// <returns>The bound listener corresponding to the specified reference.</returns>
public KeyValuePair<object, List<Action<T>>> this[object @object] => boundDelegates.FirstOrDefault(kvp => kvp.Key == @object);

/// <summary>
Expand Down

0 comments on commit 1dac1ef

Please sign in to comment.