Fix typo in "Remove dead code" section (#65)

This commit is contained in:
Alex Böhm 2023-07-07 21:25:20 +02:00 committed by GitHub
parent 9e492d26a7
commit f28ef813e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:**