From 63931971f182cc148d41896b8e2e2b7d7dda0d53 Mon Sep 17 00:00:00 2001 From: Joel Drapper Date: Tue, 3 Sep 2024 03:11:42 +0100 Subject: [PATCH] Update under-the-hood.md --- guide/under-the-hood.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/under-the-hood.md b/guide/under-the-hood.md index 5fc2043..2e65973 100644 --- a/guide/under-the-hood.md +++ b/guide/under-the-hood.md @@ -21,7 +21,7 @@ Now we want to be able to render HTML tags. Let’s start with `
` and we ca ```ruby def div @buffer << "
" - yield(self) if block_given? + yield if block_given? @buffer << "
" end ```