From 59b4ac7610fd7fa20cfbb2b9f55875fe7fa361e8 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 5 Oct 2021 06:29:37 -0400 Subject: [PATCH] Fix docstrings --- Dalamud/Plugin/DalamudPluginInterface.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index 3d872029b..d3f416404 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -165,11 +165,11 @@ namespace Dalamud.Plugin #region IPC /// - /// Gets an IPC publisher. + /// Gets an IPC provider. /// /// The return type for funcs. Use object if this is unused. /// The name of the IPC registration. - /// An IPC publisher. + /// An IPC provider. /// This is thrown when the requested types do not match the previously registered types are different. public ICallGateProvider GetIpcProvider(string name) => new CallGatePubSub(name); @@ -211,7 +211,7 @@ namespace Dalamud.Plugin /// /// The return type for funcs. Use object if this is unused. /// The name of the IPC registration. - /// An IPC publisher. + /// An IPC subscriber. public ICallGateSubscriber GetIpcSubscriber(string name) => new CallGatePubSub(name);