Skip to content

Commit

Permalink
Update under-the-hood.md
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Sep 3, 2024
1 parent 5a57b90 commit 6393197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/under-the-hood.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Now we want to be able to render HTML tags. Let’s start with `<div>` and we ca
```ruby
def div
@buffer << "<div>"
yield(self) if block_given?
yield if block_given?
@buffer << "</div>"
end
```
Expand Down

0 comments on commit 6393197

Please sign in to comment.