From dab79d453ad1464b82095ba37d939cc3e413663a Mon Sep 17 00:00:00 2001 From: Nikolay Gagarinov Date: Thu, 27 Aug 2026 23:16:52 +0500 Subject: [PATCH] =?UTF-8?q?fix(js):=20=D0=B2=D1=8B=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D1=81=D1=85=D0=B5=D0=BC=D1=83=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BD=D0=BA=D0=B0=D1=82=D0=B5=D0=BD=D0=B0=D1=86=D0=B8?= =?UTF-8?q?=D0=B8=20=D1=81=D1=82=D1=80=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Подчёркивания под строками не совпадали с их границами, а линии слияния не сходились с подчёркиваниями. Co-Authored-By: Claude Opus 5 (1M context) --- modules/25-strings/20-string-concatenation/ru/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/25-strings/20-string-concatenation/ru/README.md b/modules/25-strings/20-string-concatenation/ru/README.md index 4b921d14..257749bb 100644 --- a/modules/25-strings/20-string-concatenation/ru/README.md +++ b/modules/25-strings/20-string-concatenation/ru/README.md @@ -15,10 +15,10 @@ console.log('Dragon' + 'stone'); ```text 'Hello' + ', ' + 'World!' -└──┬──┘ └┬┘ └──┬───┘ - └────┬───┘ │ - 'Hello, ' + 'World!' - └──────┬───────┘ +└──┬──┘ └┬─┘ └──┬───┘ + └───┬───┘ │ + 'Hello, ' + 'World!' + └─────┬──────┘ 'Hello, World!' ```