diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index c7d8823f6dea65ed0cecc7645a210f927bb269ef..5685634ee2d1d6381d5977884ffd04528c1659dd 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -17,6 +17,7 @@ Drupal x.x.x, xxxx-xx-xx (development version)
     * made it possible to instantly assign roles to newly created user accounts.
     * improved configurability of the contact forms.
     * reorganized the settings pages.
+    * made it easy to investigate popopular search terms
 - block system:
     * extended the block visibility settings with a role specific settings.
     * made it possible to customize all block titles.
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 7191220219cf047d353ee6ecb75bdfaed77baeb3..4f965d8ab25d9827851e7cc97e7d5d4134f18a79 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -52,7 +52,7 @@ function watchdog_menu($may_cache) {
       'callback' => 'watchdog_overview',
       'weight' => -1);
     $items[] = array('path' => 'admin/logs/page-not-found', 'title' => t("top 'page not found' errors"),
-      'description' => t("View 'page not found errors' (404s)."),
+      'description' => t("View 'page not found' errors (404s)."),
       'callback' => 'watchdog_top',
       'callback arguments' => array('page not found'));
     $items[] = array('path' => 'admin/logs/access-denied', 'title' => t("top 'access denied' errors"),