From 9c8c577957a610a3340cf41b4eeef9b28fccbf2d Mon Sep 17 00:00:00 2001 From: Raymond Date: Fri, 27 Aug 2021 08:05:34 -0400 Subject: [PATCH] Fix comments --- Dalamud/Plugin/Internal/CallGatePubSubBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Plugin/Internal/CallGatePubSubBase.cs b/Dalamud/Plugin/Internal/CallGatePubSubBase.cs index a523b48af..1744cc875 100644 --- a/Dalamud/Plugin/Internal/CallGatePubSubBase.cs +++ b/Dalamud/Plugin/Internal/CallGatePubSubBase.cs @@ -50,14 +50,14 @@ namespace Dalamud.Plugin.Internal => this.Func = null; /// - /// Removes a registered Action from inter-plugin communication. + /// Registers an Action for inter-plugin communication. /// /// Action to register. private protected void RegisterAction(Delegate action) => this.Action = action; /// - /// Removes a registered Func from inter-plugin communication. + /// Registers a Func for inter-plugin communication. /// /// Func to register. private protected void RegisterFunc(Delegate func)