Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Feb 11, 2022
1 parent 63b28e1 commit fe2dc7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/docs/src/en/directives/modelable.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Here's a simple example of using `x-modelable` to expose a variable for binding

```alpine
<div x-data="{ number: 5 }">
<div x-data="{ count: 0 }" x-modelable="count" x-model="numberOfItems">
<div x-data="{ count: 0 }" x-modelable="count" x-model="number">
<button @click="count++">Increment</button>
</div>
Expand All @@ -24,7 +24,7 @@ Here's a simple example of using `x-modelable` to expose a variable for binding
<!-- START_VERBATIM -->
<div class="demo">
<div x-data="{ number: 5 }">
<div x-data="{ count: 0 }" x-modelable="count" x-model="numberOfItems">
<div x-data="{ count: 0 }" x-modelable="count" x-model="number">
<button @click="count++">Increment</button>
</div>

Expand Down

0 comments on commit fe2dc7d

Please sign in to comment.