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

Wording adjustment

This commit is contained in:
jopacicdev
2018-02-16 22:35:08 +01:00
committed by GitHub
parent c72d41321f
commit e90be29ff3

View File

@@ -399,10 +399,10 @@ function createMicrobrewery(string $breweryName = 'Hipster Brew Co.'): void
```php
$a = '42';
$b = 42;
Use the simple comparison will convert the string in an int
// Use the simple comparison that will convert the string in an int
if( $a != $b ) {
//The expression will always passes
// The expression will always pass
}
```