diff --git a/CustomizePlus/Api/CustomizePlusIpc.Profile.cs b/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
index a19de9d..0e3e6ee 100644
--- a/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
+++ b/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
@@ -36,7 +36,6 @@ public partial class CustomizePlusIpc
/// Retrieve list of all user profiles
/// /!\ This might be somewhat heavy method to call, so please use with caution.
///
- ///
[EzIPC("Profile.GetList")]
private IList GetProfileList()
{
@@ -86,7 +85,6 @@ public partial class CustomizePlusIpc
///
/// Enable profile using its Unique ID. Does not work on temporary profiles.
///
- ///
[EzIPC("Profile.EnableByUniqueId")]
private int EnableProfileByUniqueId(Guid uniqueId)
{
diff --git a/CustomizePlus/Api/CustomizePlusIpc.cs b/CustomizePlus/Api/CustomizePlusIpc.cs
index 33d0762..82242e1 100644
--- a/CustomizePlus/Api/CustomizePlusIpc.cs
+++ b/CustomizePlus/Api/CustomizePlusIpc.cs
@@ -10,6 +10,13 @@ using System;
namespace CustomizePlus.Api;
+///
+/// Customize+ IPC.
+/// All of the function/event names start with "CustomizePlus." prefix.
+/// For example: CustomizePlus.Profile.GetList.
+/// While Customize+ is using EzIPC to make it easier to work with IPC,
+/// you are not required to use it to interact with the plugin.
+///
public partial class CustomizePlusIpc : IDisposable
{
private readonly DalamudPluginInterface _pluginInterface;