diff --git a/includes/entity.inc b/includes/entity.inc
index 203ed87..8d9d407 100644
--- a/includes/entity.inc
+++ b/includes/entity.inc
@@ -1005,8 +1005,8 @@ class EntityFieldQuery {
    *   The called object.
    */
   public function tableSort(&$headers) {
-    // If 'field' is not initialized, the header columns aren't clickable
-    foreach ($headers as $key =>$header) {
+    // If 'field' is not initialized, the header columns aren't clickable.
+    foreach ($headers as $key => $header) {
       if (is_array($header) && isset($header['specifier'])) {
         $headers[$key]['field'] = '';
       }
@@ -1361,6 +1361,7 @@ class EntityFieldQuery {
       case 'STARTS_WITH':
         $select_query->$method($sql_field, $like_prefix . db_like($condition['value']) . '%', 'LIKE');
         break;
+
       default:
         $select_query->$method($sql_field, $condition['value'], $condition['operator']);
     }
