Merge pull request #12213 from overleaf/em-camel-case-spelling

Camel case variables in spelling

GitOrigin-RevId: 68e0e3c97381c2aeab4c606f978a62edd6fdc732
This commit is contained in:
Eric Mc Sween
2023-03-15 08:14:07 -04:00
committed by Copybot
parent f4328ae896
commit 3f0e8bb774

View File

@@ -54,7 +54,7 @@ const generateIncorrectWords = function (n) {
return words
}
const make_request = function (correctWords, incorrectWords, callback) {
const makeRequest = function (correctWords, incorrectWords, callback) {
let i, j, w
let i1
let j1
@@ -142,7 +142,7 @@ const make_request = function (correctWords, incorrectWords, callback) {
const q = async.queue(
(task, callback) =>
setTimeout(
() => make_request(task.correct, task.incorrect, callback),
() => makeRequest(task.correct, task.incorrect, callback),
Math.random() * 100
),