From 9e1d5315adcf737bc14c9e082585c5fa8e12b531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emek=20T=C3=BCrkeli?= Date: Sat, 16 Jan 2021 19:39:08 +0300 Subject: [PATCH] Fix mismatched alert text --- 1-js/02-first-steps/14-switch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-switch/article.md b/1-js/02-first-steps/14-switch/article.md index 314c6cef..effdafcf 100644 --- a/1-js/02-first-steps/14-switch/article.md +++ b/1-js/02-first-steps/14-switch/article.md @@ -47,7 +47,7 @@ switch (a) { break; */!* case 5: - alert( 'Too large' ); + alert( 'Too big' ); break; default: alert( "I don't know such values" );