From f03cc46cc379972db7c72f2792594d4658ea96af Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 24 Feb 2026 21:17:39 -0500 Subject: [PATCH] Update documentation/docs/97-best-practices/10-best-practices.md --- documentation/docs/97-best-practices/10-best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/97-best-practices/10-best-practices.md b/documentation/docs/97-best-practices/10-best-practices.md index a006c76729..05bfe8dfa2 100644 --- a/documentation/docs/97-best-practices/10-best-practices.md +++ b/documentation/docs/97-best-practices/10-best-practices.md @@ -72,7 +72,7 @@ When using an each block to iterate over some value prefer using the item withou {/each} ``` -The key MUST actually uniquely identify the object DO NOT use the index. +> [!NOTE] The key _must_ actually uniquely identify the object — _do not_ use the index. ## Snippet