From f28ef813e5c4ddc4b0d65ec2a105bb5617bf0d9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20B=C3=B6hm?= Date: Fri, 7 Jul 2023 21:25:20 +0200 Subject: [PATCH] Fix typo in "Remove dead code" section (#65) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c6d7c18..7bff168 100644 --- a/README.md +++ b/README.md @@ -1046,7 +1046,7 @@ for (let i = 0; i < list.length; i++) { ### Remove dead code Dead code is just as bad as duplicate code. There's no reason to keep it in your codebase. -If it's not being called, get rid of it! It will still be safe in your version history if you still need it. +If it's not being called, get rid of it! It will still be saved in your version history if you still need it. **Bad:**