From a2c36c946bf16e9a158844b6ee91150394da7c64 Mon Sep 17 00:00:00 2001 From: Dylan Dixon <61722933+dylan-workhub@users.noreply.github.com> Date: Fri, 9 Apr 2021 20:39:27 -0230 Subject: [PATCH] Fix plural typo line 414 Fixed a small typo with pluralization. --- 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 b12d0b9e..0068bf19 100644 --- a/1-js/02-first-steps/15-function-basics/article.md +++ b/1-js/02-first-steps/15-function-basics/article.md @@ -411,7 +411,7 @@ 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 `_`. -These are exceptions. Generally functions names should be concise and descriptive. +These are exceptions. Generally function names should be concise and descriptive. ``` ## Functions == Comments