Merge pull request #63 from jordanbuchman/patch-1

Fix extra quote in docs.md

thank you!
This commit is contained in:
chg20 2020-05-29 14:38:41 -07:00 committed by GitHub
commit ed8d1d8efd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,7 +147,7 @@ Here is a `div` that posts to `/mouse_entered` when a mouse enters it:
If you want a request to only happen once, you can use the `once` modifier for the trigger:
```html
<div hx-post="/mouse_entered" hx-trigger="mouseenter once"">
<div hx-post="/mouse_entered" hx-trigger="mouseenter once">
[Here Mouse, Mouse!]
</div>
```