Skip to content

Commit

Permalink
Fix typos. (#4332)
Browse files Browse the repository at this point in the history
  • Loading branch information
armandohg authored Aug 13, 2024
1 parent 081816f commit 1539ee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/docs/src/en/plugins/resize.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Alpine.plugin(resize)

The primary API for using this plugin is `x-resize`. You can add `x-resize` to any element within an Alpine component, and when that element is resized for any reason, the provided expression will execute with two magic properties: `$width` and `$height`.

For example, here's a simple example of using `x-resize` do display the width and height of an element as it changes size.
For example, here's a simple example of using `x-resize` to display the width and height of an element as it changes size.

```alpine
<div
Expand Down Expand Up @@ -81,7 +81,7 @@ For example, here's a simple example of using `x-resize` do display the width an
<a name="document"></a>
### .document

It's often useful to observer the entire document's size, rather than a specific element. To do this, you can add the `.document` modifier to `x-resize`:
It's often useful to observe the entire document's size, rather than a specific element. To do this, you can add the `.document` modifier to `x-resize`:

```alpine
<div x-resize.document="...">
Expand Down

0 comments on commit 1539ee9

Please sign in to comment.