From 45c1b2b1133e37cc0b0aa63ffd2a085d7ab33236 Mon Sep 17 00:00:00 2001 From: JacobLinCool Date: Fri, 25 Mar 2022 12:04:54 +0800 Subject: [PATCH] chore: fix rate limit message typo (#1353) "to" -> "too" --- lib/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api.js b/lib/api.js index c92e2e5..23eacd8 100644 --- a/lib/api.js +++ b/lib/api.js @@ -32,7 +32,7 @@ const RATE_LIMIT_CODE = 420 function checkIfRateLimited(err) { if (err.response.status === RATE_LIMIT_CODE) { alert( - "Oh no! Looks like to many people are trying to tweet right now and we've been rate limited. Try again soon or save and upload manually!" + "Oh no! Looks like too many people are trying to tweet right now and we've been rate limited. Try again soon or save and upload manually!" ) return }