From 8fc41994921bf93a0aa261a5e56d2a26ac922444 Mon Sep 17 00:00:00 2001 From: Jesper Schulz-Wedde Date: Thu, 25 Jun 2026 11:42:29 +0200 Subject: [PATCH] Soften Anti Pattern wording in add-new-event-parameters article Remove the last name-vs-position misconception from the Anti Pattern so it is consistent with the corrected Description: mid-list insertion is framed as noisy and harder to review rather than as forcing subscriber re-mapping. Detection sentence unchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../knowledge/events/add-new-event-parameters-at-the-end.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft/knowledge/events/add-new-event-parameters-at-the-end.md b/microsoft/knowledge/events/add-new-event-parameters-at-the-end.md index 5813384..1f1dc14 100644 --- a/microsoft/knowledge/events/add-new-event-parameters-at-the-end.md +++ b/microsoft/knowledge/events/add-new-event-parameters-at-the-end.md @@ -21,6 +21,6 @@ See sample: `add-new-event-parameters-at-the-end.good.al`. ## Anti Pattern -Inserting a new parameter in the middle of an existing event's signature, shifting the position of every subsequent argument and forcing a careful re-map of all subscribers. Detection: a changed event signature where an added parameter appears before existing parameters rather than at the tail of the list. +Inserting a new parameter in the middle of an existing event's signature, shifting every subsequent parameter and making the change noisy and harder to review. Detection: a changed event signature where an added parameter appears before existing parameters rather than at the tail of the list. See sample: `add-new-event-parameters-at-the-end.bad.al`.