diff --git a/Dalamud/Plugin/Ipc/Internal/DataShare.cs b/Dalamud/Plugin/Ipc/Internal/DataShare.cs
index d0c080e28..4594b6159 100644
--- a/Dalamud/Plugin/Ipc/Internal/DataShare.cs
+++ b/Dalamud/Plugin/Ipc/Internal/DataShare.cs
@@ -25,7 +25,7 @@ internal class DataShare : IServiceType
/// Otherwise, call the function to create data and store it as a new cache.
/// In either case, the calling assembly will be added to the current consumers on success.
///
- /// The type of the stored data - needs to be a reference type.
+ /// The type of the stored data - needs to be a reference type that is shared through Dalamud itself, not loaded by the plugin.
/// The name for the data cache.
/// The function that generates the data if it does not already exist.
/// Either the existing data for or the data generated by .
@@ -82,7 +82,7 @@ internal class DataShare : IServiceType
/// Obtain the data for the given , if it exists and has the correct type.
/// Add the calling assembly to the current consumers if true is returned.
///
- /// The type for the requested data - needs to be a reference type.
+ /// The type of the stored data - needs to be a reference type that is shared through Dalamud itself, not loaded by the plugin.
/// The name for the data cache.
/// The requested data on success, null otherwise.
/// True if the requested data exists and is assignable to the requested type.
@@ -106,7 +106,7 @@ internal class DataShare : IServiceType
/// Obtain the data for the given , if it exists and has the correct type.
/// Add the calling assembly to the current consumers if non-null is returned.
///
- /// The type for the requested data - needs to be a reference type.
+ /// The type of the stored data - needs to be a reference type that is shared through Dalamud itself, not loaded by the plugin.
/// The name for the data cache.
/// The requested data
/// Thrown if is not registered.