From 6fca8a4b310953a87ffedf0d06b1bbed0ef90485 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 5 Oct 2020 14:54:28 +0300 Subject: [PATCH] minor fixes --- 2-ui/5-loading/03-onload-onerror/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-ui/5-loading/03-onload-onerror/article.md b/2-ui/5-loading/03-onload-onerror/article.md index 162c9060..590e54ab 100644 --- a/2-ui/5-loading/03-onload-onerror/article.md +++ b/2-ui/5-loading/03-onload-onerror/article.md @@ -41,8 +41,8 @@ document.head.append(script); *!* script.onload = function() { - // the script creates a helper function "_" - alert(_); // the function is available + // the script creates a variable "_" + alert( _.VERSION ); // shows library version }; */!* ```