Index: core.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/docs/developer/hooks/core.php,v
retrieving revision 1.211
diff -u -p -r1.211 core.php
--- core.php	13 Oct 2008 23:18:37 -0000	1.211
+++ core.php	18 Oct 2008 01:02:31 -0000
@@ -972,13 +972,18 @@ function hook_mail_alter(&$message) {
  *   Drupal path being registered. The item is an associative array that may
  *   contain the following key-value pairs:
  *
- *   - "title": Required. The untranslated title of the menu item.
+ *   - "title": Required (unless title callback is provided). The untranslated 
+ *      title of the menu item.
+ *   - "title callback": The function to call to modify the title.  Takes $title,
+ *      the title, as a parameter if no title arguments are defined.
+ *   - "title arguments": An array of arguments to pass to the title callback
+ *      function.  Integer values pass the corresponding URL component (see arg()).
  *   - "description": The untranslated description of the menu item.
  *   - "page callback": The function to call to display a web page when the user
  *     visits the path. If omitted, the parent menu item's callback will be used
  *     instead.
  *   - "page arguments": An array of arguments to pass to the page callback
- *     function.  Integer values pass the corresponding URL component (see arg()).
+ *     function.  Integer values pass the corresponding URL component.
  *   - "access callback": A  function returning a boolean value that determines
  *     whether the user has access rights to this menu item. Defaults to
  *     user_access() unless a value is inherited from a parent menu item..
