From 999c9af1bc15a36919f057547583de4f2baf9628 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Tue, 18 Nov 2025 18:28:22 +0800 Subject: [PATCH] Fix capitalization of 'lodash' in article.md --- 1-js/02-first-steps/15-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/15-function-basics/article.md b/1-js/02-first-steps/15-function-basics/article.md index 6a68675636..fe32efdc6f 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -454,7 +454,7 @@ checkPermission(..) // 检查权限并返回 true/false ```smart header="非常短的函数命名" 常用的函数有时会有**非常短**的名字。 -例如,[jQuery](http://jquery.com) 框架用 `$` 定义一个函数。[LoDash](http://lodash.com/) 库的核心函数用 `_` 命名。 +例如,[jQuery](http://jquery.com) 框架用 `$` 定义一个函数。[lodash](http://lodash.com/) 库的核心函数用 `_` 命名。 这些都是例外,一般而言,函数名应简明扼要且具有描述性。 ```