mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix comments
This commit is contained in:
parent
f129c6a9e0
commit
9c8c577957
1 changed files with 2 additions and 2 deletions
|
|
@ -50,14 +50,14 @@ namespace Dalamud.Plugin.Internal
|
||||||
=> this.Func = null;
|
=> this.Func = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Removes a registered Action from inter-plugin communication.
|
/// Registers an Action for inter-plugin communication.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="action">Action to register.</param>
|
/// <param name="action">Action to register.</param>
|
||||||
private protected void RegisterAction(Delegate action)
|
private protected void RegisterAction(Delegate action)
|
||||||
=> this.Action = action;
|
=> this.Action = action;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Removes a registered Func from inter-plugin communication.
|
/// Registers a Func for inter-plugin communication.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="func">Func to register.</param>
|
/// <param name="func">Func to register.</param>
|
||||||
private protected void RegisterFunc(Delegate func)
|
private protected void RegisterFunc(Delegate func)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue