mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 20:11:32 +02:00
Merge pull request #12213 from overleaf/em-camel-case-spelling
Camel case variables in spelling GitOrigin-RevId: 68e0e3c97381c2aeab4c606f978a62edd6fdc732
This commit is contained in:
@@ -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
|
||||
),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user