From 6b21cedabe894f6cc6f06d65116e1cfe54251ed4 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Sat, 20 Sep 2025 02:00:37 +0900 Subject: [PATCH] chore: fix typo in comment --- src/lib/isRgbColor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/isRgbColor.js b/src/lib/isRgbColor.js index 6e2866243..a672df279 100644 --- a/src/lib/isRgbColor.js +++ b/src/lib/isRgbColor.js @@ -23,7 +23,7 @@ export default function isRgbColor(str, options) { } if (allowSpaces) { - // make sure it starts with continous rgba? without spaces before stripping + // make sure it starts with continuous rgba? without spaces before stripping if (!startsWithRgb.test(str)) { return false; }