From 053147451b7149ddcd986c5f80ca027cd28b60c4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 22 Apr 2026 07:12:38 +0100 Subject: [PATCH] docs: generalize plugin runtime comments --- src/logging/subsystem.ts | 2 +- src/plugins/runtime/types-channel.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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";