1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-09-26 05:59:04 +02:00

Update README.md

This commit is contained in:
ZielinskiLukasz
2017-09-23 11:59:08 +02:00
committed by GitHub
parent 998dd02b92
commit 1cf35d42f0

View File

@@ -184,7 +184,7 @@ saveCityZipCode($matches['city'], $matches['zipCode']);
### Avoid nesting too deeply and return early (part 1)
Too many if else statemetns can make your code hard to follow. Explicit is better
Too many if else statements can make your code hard to follow. Explicit is better
than implicit.
**Bad:**