Skip to content

Commit

Permalink
Remove unnecessary parentheses from bind.md example (#4363)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsbird authored Oct 12, 2024
1 parent ab743bc commit cfe9499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/en/directives/bind.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ And like most expressions in Alpine, you can always use the result of a JavaScri
The object keys can be anything you would normally write as an attribute name in Alpine. This includes Alpine directives and modifiers, but also plain HTML attributes. The object values are either plain strings, or in the case of dynamic Alpine directives, callbacks to be evaluated by Alpine.

```alpine
<div x-data="dropdown()">
<div x-data="dropdown">
<button x-bind="trigger">Open Dropdown</button>
<span x-bind="dialogue">Dropdown Contents</span>
Expand Down

0 comments on commit cfe9499

Please sign in to comment.