From 3b7e069a257249e40e251701c2ade11a2a560974 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Fri, 8 Feb 2019 09:56:57 +0300 Subject: [PATCH] Little fix code style in chapter 6 --- manuscript/chapter-6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/chapter-6.md b/manuscript/chapter-6.md index 88c2b53..141aa71 100644 --- a/manuscript/chapter-6.md +++ b/manuscript/chapter-6.md @@ -409,7 +409,7 @@ function sendMail({ from, to, subject, text, html }) { } function deleteEmails() { - while(emails.length > 0) { + while (emails.length > 0) { emails.pop(); } }