From 80894dc3eadd1cbf288d8c9123e52edd71d156d1 Mon Sep 17 00:00:00 2001 From: Rossiadis Yiannis <81157620+YiannisRoss@users.noreply.github.com> Date: Sat, 2 Oct 2021 11:41:34 +0300 Subject: [PATCH] fix typo on line 240 "it's own readme" to "its own readme" --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8f6ae63..71a7ba3 100644 --- a/index.html +++ b/index.html @@ -237,7 +237,7 @@ - Start by moving repeatedly used code into a function - When your function (or a group of functions related to the same theme) get big enough, move them into another file and expose them using `module.exports`. You can load this using a relative require - - If you have some code that can be used across multiple projects give it it's own readme, tests and `package.json` and publish it to github and npm. There are too many awesome benefits to this specific approach to list here! + - If you have some code that can be used across multiple projects give it its own readme, tests and `package.json` and publish it to github and npm. There are too many awesome benefits to this specific approach to list here! - A good module is small and focuses on one problem - Individual files in a module should not be longer than around 150 lines of JavaScript - A module shouldn't have more than one level of nested folders full of JavaScript files. If it does, it is probably doing too many things