diff --git a/core/includes/path.inc b/core/includes/path.inc
index 2c0568c9ffc3b1ebd7f60d3de93768f17c64bb15..1fac2352140c180bbf9da662806da8b4745796aa 100644
--- a/core/includes/path.inc
+++ b/core/includes/path.inc
@@ -13,7 +13,8 @@
  * Initialize the $_GET['q'] variable to the proper normal path.
  */
 function drupal_path_initialize() {
-  // Ensure $_GET['q'] is set before calling drupal_normal_path().
+  // Ensure $_GET['q'] is set before calling drupal_normal_path(), to support
+  // path caching with hook_url_inbound_alter().
   if (empty($_GET['q'])) {
     $_GET['q'] = variable_get('site_frontpage', 'node');
   }