summaryrefslogtreecommitdiff
path: root/includes/path.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/path.inc')
-rw-r--r--includes/path.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/path.inc b/includes/path.inc
index f2c5141fe..9112cb146 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -123,9 +123,9 @@ function drupal_get_normal_path($path) {
/**
* Return a component of the current Drupal path.
*
- * When viewing a page at the path "admin/node/configure", for example, arg(0)
- * would return "admin", arg(1) would return "node", and arg(2) would return
- * "configure".
+ * When viewing a page at the path "admin/content/types", for example, arg(0)
+ * would return "admin", arg(1) would return "content", and arg(2) would return
+ * "types".
*
* Avoid use of this function where possible, as resulting code is hard to read.
* Instead, attempt to use named arguments in menu callback functions. See the