mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2024-11-23 05:34:04 +00:00
Fix typo in "Remove dead code" section (#65)
This commit is contained in:
parent
9e492d26a7
commit
f28ef813e5
|
@ -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:**
|
||||
|
||||
|
|
Loading…
Reference in a new issue