diff options
author | Igor Berlenko <igorberlenko7@gmail.com> | 2024-07-26 12:27:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 00:27:22 -0400 |
commit | 49b5dae073d16a4b26de51450ed9f7947fbda36b (patch) | |
tree | bfcde1af2526450e458b767ac0e2d676d8f8b79d /test | |
parent | 45566e126edd51bd24ff67871d662d6fc5b5934d (diff) | |
download | htmx-49b5dae073d16a4b26de51450ed9f7947fbda36b.tar.gz htmx-49b5dae073d16a4b26de51450ed9f7947fbda36b.zip |
fixed typo in hx-trigger.js (#2728)
Update hx-trigger.js
Diffstat (limited to 'test')
-rw-r--r-- | test/attributes/hx-trigger.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/attributes/hx-trigger.js b/test/attributes/hx-trigger.js index bc968be1..f2755103 100644 --- a/test/attributes/hx-trigger.js +++ b/test/attributes/hx-trigger.js @@ -657,7 +657,7 @@ describe('hx-trigger attribute', function() { }, 50) }) - it('A throttle of 0 does not multiple requests from happening', function(done) { + it('A throttle of 0 does not prevent multiple requests from happening', function(done) { var requests = 0 var server = this.server server.respondWith('GET', '/test', function(xhr) { |