From d5a7c3bf0edba654aad9477a2b71e7f515a5fdf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 8 Apr 2026 09:05:16 +0200 Subject: [PATCH] docs: clarify that ignore skips evaluation and type-checking The ignore attribute skips both evaluation and type-checking of code blocks, not just type-checking. Closes #2657 Co-Authored-By: Claude Opus 4.6 (1M context) --- runtime/reference/documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/reference/documentation.md b/runtime/reference/documentation.md index 21ab16c48..47c9fc673 100644 --- a/runtime/reference/documentation.md +++ b/runtime/reference/documentation.md @@ -41,7 +41,7 @@ If no language identifier is specified then the language is inferred from media type of the source document that the code block is extracted from. Another attribute supported is `ignore`, which tells the test runner to skip -type-checking the code block. +evaluation and type-checking of the code block. ````ts /**