From f74963ae73c29f8f02a53c46889a0b9a7bf0f32a Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Fri, 26 Apr 2019 00:25:21 +0300 Subject: [PATCH] js/first-steps/function-basics: fix name of Lodash --- 1-js/02-first-steps/14-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-function-basics/article.md b/1-js/02-first-steps/14-function-basics/article.md index 874890ab..18833cbf 100644 --- a/1-js/02-first-steps/14-function-basics/article.md +++ b/1-js/02-first-steps/14-function-basics/article.md @@ -382,7 +382,7 @@ These examples assume common meanings of prefixes. What they mean for you is det ```smart header="Ultrashort function names" Functions that are used *very often* sometimes have ultrashort names. -For example, the [jQuery](http://jquery.com) framework defines a function with `$`. The [LoDash](http://lodash.com/) library has its core function named `_`. +For example, the [jQuery](http://jquery.com) framework defines a function with `$`. The [Lodash](http://lodash.com/) library has its core function named `_`. These are exceptions. Generally functions names should be concise and descriptive. ```