diff --git a/src/logging/subsystem.ts b/src/logging/subsystem.ts index 1951b800817..30bc38e7d68 100644 --- a/src/logging/subsystem.ts +++ b/src/logging/subsystem.ts @@ -154,7 +154,7 @@ export function stripRedundantSubsystemPrefixForConsole( return message; } - // Common duplication: "[discord] discord: ..." (when a message manually includes the subsystem tag). + // Common duplication when a message manually includes the subsystem tag. if (message.startsWith("[")) { const closeIdx = message.indexOf("]"); if (closeIdx > 1) { diff --git a/src/plugins/runtime/types-channel.ts b/src/plugins/runtime/types-channel.ts index 62cb9b7d23a..087fd528032 100644 --- a/src/plugins/runtime/types-channel.ts +++ b/src/plugins/runtime/types-channel.ts @@ -3,7 +3,7 @@ * * This surface exposes generic core helpers only. Plugin-owned behavior stays * inside the owning plugin package instead of hanging off core runtime slots - * like `channel.discord` or `channel.slack`. + * keyed by plugin id. */ import type { DispatchReplyWithBufferedBlockDispatcher } from "../../auto-reply/reply/provider-dispatcher.types.js"; import type { CreateReplyDispatcherWithTyping } from "../../auto-reply/reply/reply-dispatcher.runtime-types.js";