Fixes & code style changes

This commit is contained in:
2018-03-28 10:02:19 +09:00
parent 7d42256a30
commit a28e5244ab
4 changed files with 9 additions and 7 deletions

View File

@@ -244,7 +244,7 @@ class gettext_reader
if ($cmp == 0) {
// string is exactly in the middle => return it
return $half;
} else if ($cmp < 0) {
} elseif ($cmp < 0) {
// The string is in the upper half
return $this->find_string($string, $start, $half);
} else {