diff --git a/src/Discord.Net.Core/DiscordConfig.cs b/src/Discord.Net.Core/DiscordConfig.cs
index 7c535ce1e..006a1ca17 100644
--- a/src/Discord.Net.Core/DiscordConfig.cs
+++ b/src/Discord.Net.Core/DiscordConfig.cs
@@ -189,8 +189,13 @@ namespace Discord
public bool UseInteractionSnowflakeDate { get; set; } = true;
///
- /// Gets or sets if any user's override formats the string in respect to bidirectional unicode.
+ /// Gets or sets if the Rest/Socket user override formats the string in respect to bidirectional unicode.
///
+ ///
+ /// By default, the returned value will be "?Discord?#1234", to work with bidirectional usernames.
+ ///
+ /// If set to , this value will be "Discord#1234".
+ ///
public bool FormatUsersInBidirectionalUnicode { get; set; } = true;
}
}