Caleb Porzio 5 gadi atpakaļ
vecāks
revīzija
e0060f0f75
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -74,7 +74,7 @@ Think of it like the `data` property of a Vue component.
 
 **Extract Component Logic**
 
-You can extract data (and behavior) into reausable functions like so:
+You can extract data (and behavior) into reausable functions:
 
 ```html
 <div x-data="dropdown()">
@@ -97,7 +97,7 @@ You can extract data (and behavior) into reausable functions like so:
 </script>
 ```
 
-You can also mix-in multiple data objects with syntax like so:
+You can also mix-in multiple data objects with syntax:
 
 ```html
 <div x-data="{...dropdown(), ...tabs()}">