Skip to content

Commit de67e86

Browse files
Fix typo in blade comment (laravel#8259)
{-- > {{--
1 parent 4ac7dea commit de67e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,10 +793,10 @@ The `$alertType` argument may be provided to the component like so:
793793
When passing attributes to components, you may also use a "short attribute" syntax. This is often convenient since attribute names frequently match the variable names they correspond to:
794794

795795
```blade
796-
{-- Short attribute syntax... --}
796+
{{-- Short attribute syntax... --}}
797797
<x-profile :$userId :$name />
798798
799-
{-- Is equivalent to... --}
799+
{{-- Is equivalent to... --}}
800800
<x-profile :user-id="$userId" :name="$name" />
801801
```
802802

0 commit comments

Comments
 (0)