diff -u b/forum_access.module b/forum_access.module
--- b/forum_access.module
+++ b/forum_access.module
@@ -8,7 +8,6 @@
 use Drupal\comment\CommentInterface;
 use Drupal\Core\Access\AccessResult;
 use Drupal\Core\Database\Query\AlterableInterface;
-use Drupal\Core\Database\Query\Condition;
 use Drupal\Core\Database\Query\SelectInterface;
 use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
 use Drupal\Core\Entity\EntityInterface;
@@ -357,8 +356,8 @@
     'update' => forum_access_access('update', $tid),
     'delete' => forum_access_access('delete', $tid),
   ];
-  // If user has access to update or delete posts or he is moderator
-  // of forum allow him to see unpublished comments.
+  // If user has access to update or delete posts or its is moderator
+  // of forum allow it to see unpublished comments.
   if (!($access['update'] || $access['delete'])) {
     return;
   }
@@ -598,18 +597,24 @@
       '#type' => 'radios',
       '#title' => t('Update the permissions'),
       /*
-      '#description' => t('<em>If</em> you make any node access changes, then each node in this forum needs to be updated. Hover over the radiobuttons for details.'),
+      '#description' => t('<em>If</em> you make any node access changes,
+        then each node in this forum needs to be updated. Hover over the
+        radiobuttons for details.'),
       '#options' => array_flip(['this_tid_now', 'batch', 'later']),
       '#default_value' => ($count <= $threshold ? 'this_forum_now' : 'batch'),
       'this_tid_now' => [
         '#type' => 'radio',
         '#title' => t('for all %count nodes immediately', ['%count' => $count]),
-        '#attributes' => ['title' => t('This option is the fastest, but with many nodes it can still take considerable time and memory. If it does not complete, it will leave your @node_access table in an inconsistent state.', ['@!node_access' => '{node_access}'])],
+        '#attributes' => ['title' => t('This option is the fastest, but with
+         many nodes it can still take considerable time and memory. If it does
+         not complete, it will leave your @node_access table in an inconsistent
+         state.', ['@!node_access' => '{node_access}'])],
       ],
       'batch' => [
         '#type' => 'radio',
         '#title' => t('in batches of @limit now', ['@limit' => $limit]),
-        '#attributes' => ['title' => t('The batch option will always work reliably, but it takes longer to complete.')],
+        '#attributes' => ['title' => t('The batch option will always work
+         reliably, but it takes longer to complete.')],
       ],
       */
       '#options' => array_flip(['all_now', 'all_later']),
