Tomáš Kukumberg 1 year ago
parent
commit
9f96f86202
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/docs/src/en/directives/model.md

+ 1 - 1
packages/docs/src/en/directives/model.md

@@ -13,7 +13,7 @@ Here's a simple example of using `x-model` to bind the value of a text field to
 <div x-data="{ message: '' }">
     <input type="text" x-model="message">
 
-    <span x-text="message">
+    <span x-text="message"></span>
 </div>
 ```