diff --git a/core/modules/statistics/statistics.module b/core/modules/statistics/statistics.module
index 00e5b5493c02c6903662e0d6c1413e1cd5f10cfd..7afd2f5c428ef0957977e072c9c3290cdc1b16a2 100644
--- a/core/modules/statistics/statistics.module
+++ b/core/modules/statistics/statistics.module
@@ -125,10 +125,10 @@ function statistics_title_list($dbfield, $dbrows) {
 /**
  * Retrieves a node's "view statistics".
  *
- * @param $nid
+ * @param int $nid
  *   The node ID.
  *
- * @return
+ * @return array
  *   An associative array containing:
  *   - totalcount: Integer for the total number of times the node has been
  *     viewed.
@@ -148,7 +148,7 @@ function statistics_get($nid) {
  * Implements hook_ENTITY_TYPE_predelete() for node entities.
  */
 function statistics_node_predelete(EntityInterface $node) {
-  // clean up statistics table when node is deleted
+  // Clean up statistics table when node is deleted.
   db_delete('node_counter')
     ->condition('nid', $node->id())
     ->execute();