From a3669eec34b8fcefb7f862a3152d9be4e3baf40c Mon Sep 17 00:00:00 2001 From: Kwabena Fuachie <53425546+ka-fuachie@users.noreply.github.com> Date: Tue, 30 Jun 2026 16:24:07 +0000 Subject: [PATCH] docs: fix typo --- content/docs/digging_deeper/creating-custom-tags.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/digging_deeper/creating-custom-tags.md b/content/docs/digging_deeper/creating-custom-tags.md index a7ebf43..b2713c3 100644 --- a/content/docs/digging_deeper/creating-custom-tags.md +++ b/content/docs/digging_deeper/creating-custom-tags.md @@ -48,7 +48,7 @@ edge.registerTag(reverse) */ const output = await edge.renderRaw('@reverse()') -console.log(output) // I am the reverse tag +console.log(output) // Hello from reverse tag ``` - `block`: The `block` flag creates a block-level Edge tag which must be used with an opening and a closing statement. For example: The `@if` and `@each` tags are block-level.