Spelling and readability are very important for humans and not important for machines.
TL;DR: Take care of your names.
Problems
- Readability
Solutions
Spellcheck your code.
Use an IDE with spellchecking
Context
Many of us don't speak English as our first language.
We need to have extra care for our texts and names.
This article has a typo in its title as proof of context and also a clickbait😀
Sample Code
Wrong
comboFeededBySupplyer = supplyer.providers();
Right
comboFedBySupplier = supplier.providers();
Detection
[X] Manual
- We need to read the code in a peer review.
[X] Automatic
- Some IDEs have warnings on the typos.
Tags
Readability
Naming
Conclusion
Pay close attention to your names.
You will probably be the person reading the code in a few months.
More Info
Credits
Photo by Brett Jordan on Unsplash
Inside every well-written large program is a well-written small program.
C.A.R. Hoare
Software Engineering Great Quotes
Maxi Contieri ・ Dec 28 '20
This article is part of the CodeSmell Series.
Top comments (0)