Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 398 Bytes

File metadata and controls

13 lines (7 loc) · 398 Bytes

Pattern: Use of poorly named class

Issue: -

Description

Classes named I, O, and l can be very hard to read. This is because the letter I and the letter l are easily confused, and the letter O and the number 0 can be easily confused.

Change the names of these classes to something more descriptive.

Further Reading