From e0289962b10a1f706430315d3588f322159bd6b5 Mon Sep 17 00:00:00 2001 From: Jon Kazama Date: Thu, 21 May 2026 12:10:17 +0200 Subject: [PATCH] style: remove em-dashes from new code comments --- HellionChat/Integrations/FailedTellNotifier.cs | 2 +- HellionChat/MessageManager.cs | 2 +- HellionChat/Plugin.cs | 2 +- HellionChat/Ui/ChatLogWindow.cs | 2 +- HellionChat/_Helpers/FailedTellMatcher.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HellionChat/Integrations/FailedTellNotifier.cs b/HellionChat/Integrations/FailedTellNotifier.cs index 9b01184..90fa512 100644 --- a/HellionChat/Integrations/FailedTellNotifier.cs +++ b/HellionChat/Integrations/FailedTellNotifier.cs @@ -14,7 +14,7 @@ namespace HellionChat.Integrations; // failed" signal is not reachable over the processed message stream (Message // carries no LogMessage row id, ChatCode 60 is too broad). This hooks the one // ShowLogMessageString overload and toasts on a pinned id set. It is NOT the -// broad ad-block hook layer — that stays v1.5.6. +// broad ad-block hook layer. That stays v1.5.6. internal sealed class FailedTellNotifier : IDisposable { private readonly ILogger _logger; diff --git a/HellionChat/MessageManager.cs b/HellionChat/MessageManager.cs index 3a0758f..78620ab 100644 --- a/HellionChat/MessageManager.cs +++ b/HellionChat/MessageManager.cs @@ -344,7 +344,7 @@ internal class MessageManager : IAsyncDisposable tab.AddMessage(message, unread); // UI-3: per-tab notification sound. Fire once for the first - // inactive tab that wants it — keeps a message matching several + // inactive tab that wants it, keeping a message matching several // background tabs from stacking sounds. // TEST-MIRROR: ../_Helpers/TabSoundDecision.cs if (notificationSound is null diff --git a/HellionChat/Plugin.cs b/HellionChat/Plugin.cs index dd9a8dd..32da81a 100755 --- a/HellionChat/Plugin.cs +++ b/HellionChat/Plugin.cs @@ -201,7 +201,7 @@ public sealed class Plugin : IAsyncDalamudPlugin // Schema gate: v1.4.x+ requires config v16+. Users on older schemas // must install v1.4.2 first to run the migration chain. v18 adds the // per-tab EnableNotificationSound + NotificationSoundId fields (UI-3) - // and the top-level NotifyFailedTell flag (UI-2) — all additive with + // and the top-level NotifyFailedTell flag (UI-2), all additive with // defaults, so v16/v17 configs load cleanly and get their Version // stamp bumped after the gate. if (Config.Version < 16) diff --git a/HellionChat/Ui/ChatLogWindow.cs b/HellionChat/Ui/ChatLogWindow.cs index 4522324..a5446c3 100644 --- a/HellionChat/Ui/ChatLogWindow.cs +++ b/HellionChat/Ui/ChatLogWindow.cs @@ -2486,7 +2486,7 @@ public sealed class ChatLogWindow : Window // UI-4: focus the rename field on the frame the context menu opens so // the user can type immediately. Buffer raised 128 -> 512 to match the - // settings-tab rename (Ui/SettingsTabs/Tabs.cs) — one name limit, not two. + // settings-tab rename (Ui/SettingsTabs/Tabs.cs). One name limit, not two. if (ImGui.IsWindowAppearing()) ImGui.SetKeyboardFocusHere(); ImGui.SetNextItemWidth(250f * ImGuiHelpers.GlobalScale); diff --git a/HellionChat/_Helpers/FailedTellMatcher.cs b/HellionChat/_Helpers/FailedTellMatcher.cs index eba16aa..588a48d 100644 --- a/HellionChat/_Helpers/FailedTellMatcher.cs +++ b/HellionChat/_Helpers/FailedTellMatcher.cs @@ -11,7 +11,7 @@ public static class FailedTellMatcher { // Log-message ids the game raises for a tell that could not be delivered. // Pinned from discovery (see plan Task 2, Step 9). An empty set means the - // hook never toasts — "no toast over a false toast" until ids are pinned. + // hook never toasts: "no toast over a false toast" until ids are pinned. public static readonly IReadOnlySet FailedTellLogMessageIds = new HashSet { // pinned in Task 2 Step 9