@alpinejs/docs 3.9.0-revision.1 → 3.9.0-revision.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpinejs/docs",
3
- "version": "3.9.0-revision.1",
3
+ "version": "3.9.0-revision.2",
4
4
  "description": "The documentation for Alpine",
5
5
  "author": "Caleb Porzio",
6
6
  "license": "MIT"
@@ -13,7 +13,7 @@ Here's a simple example of using `x-modelable` to expose a variable for binding
13
13
 
14
14
  ```alpine
15
15
  <div x-data="{ number: 5 }">
16
- <div x-data="{ count: 0 }" x-modelable="count" x-model="numberOfItems">
16
+ <div x-data="{ count: 0 }" x-modelable="count" x-model="number">
17
17
  <button @click="count++">Increment</button>
18
18
  </div>
19
19
 
@@ -24,7 +24,7 @@ Here's a simple example of using `x-modelable` to expose a variable for binding
24
24
  <!-- START_VERBATIM -->
25
25
  <div class="demo">
26
26
  <div x-data="{ number: 5 }">
27
- <div x-data="{ count: 0 }" x-modelable="count" x-model="numberOfItems">
27
+ <div x-data="{ count: 0 }" x-modelable="count" x-model="number">
28
28
  <button @click="count++">Increment</button>
29
29
  </div>
30
30