From be6856d4bcc066f7d3846abd6f7437c6fb007a11 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Tue, 29 Oct 2019 23:42:37 +0300 Subject: [PATCH] closes #1532 --- 1-js/05-data-types/05-array-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index afba5bc8..b140788b 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -574,7 +574,7 @@ The calculation flow: Or in the form of a table, where each row represents a function call on the next array element: -| |`sum`|`current`|`result`| +| |`sum`|`current`|result| |---|-----|---------|---------| |the first call|`0`|`1`|`1`| |the second call|`1`|`2`|`3`|