mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #12213 from overleaf/em-camel-case-spelling
Camel case variables in spelling GitOrigin-RevId: 68e0e3c97381c2aeab4c606f978a62edd6fdc732
This commit is contained in:
parent
e956ccfdaa
commit
119d986b4a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
),
|
||||
|
||||
|
|
Loading…
Reference in a new issue