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);