From 914742a03ef25a72c072f69074311cab7dee7129 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 14 Feb 2022 15:09:01 +0900 Subject: [PATCH] Update std.js --- lib/std.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std.js b/lib/std.js index d40ba49..22599c2 100644 --- a/lib/std.js +++ b/lib/std.js @@ -182,7 +182,7 @@ function rotate(target, callback, onError) { } i++; - i = i % keywords.length; + i = i % target.length; } };