Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 375 Bytes

File metadata and controls

23 lines (14 loc) · 375 Bytes

Pattern: Missing whitespace around arithmetic operator

Issue: -

Description

There should be one space before and after an arithmetic operator (+, -, /, and *).

Example of incorrect code:

age = 10+15

Example of correct code:

age = 10 + 15

Further Reading