Explorar el Código

Remove single quote under Forwarding Events (#2440)

Grammatical correction - its not it's
James Riordon hace 3 años
padre
commit
ef154eeb6e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/docs/src/en/directives/teleport.md

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

@@ -65,7 +65,7 @@ Notice how when toggling the modal, the actual modal contents show up AFTER the
 <a name="forwarding-events"></a>
 ## Forwarding events
 
-Alpine tries it's best to make the experience of teleporting seamless. Anything you would normally do in a template, you should be able to do inside an `x-teleport` template. Teleported content can access the normal Alpine scope of the component as well as other features like `$refs`, `$root`, etc...
+Alpine tries its best to make the experience of teleporting seamless. Anything you would normally do in a template, you should be able to do inside an `x-teleport` template. Teleported content can access the normal Alpine scope of the component as well as other features like `$refs`, `$root`, etc...
 
 However, native DOM events have no concept of teleportation, so if, for example, you trigger a "click" event from inside a teleported element, that event will bubble up the DOM tree as it normally would.