Index: modules/block/block.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.api.php,v
retrieving revision 1.5
diff -u -p -r1.5 block.api.php
--- modules/block/block.api.php	11 Aug 2009 12:20:26 -0000	1.5
+++ modules/block/block.api.php	23 Aug 2009 08:42:24 -0000
@@ -72,10 +72,6 @@ function hook_block_list() {
 /**
  * Configuration form for the block.
  *
- * Any module can export a block (or blocks) to be displayed by defining
- * the _block hook. This hook is called by theme.inc to display a block,
- * and also by block.module to procure the list of available blocks.
- *
  * @param $delta
  *   Which block to return. This is a descriptive string used to identify
  *   blocks within each module and also within the theme system.
@@ -84,9 +80,6 @@ function hook_block_list() {
  * @return
  *   Optionally return the configuration form.
  *
- * After completing your blocks, do not forget to enable them in the
- * block admin menu.
- *
  * For a detailed usage example, see block_example.module.
  */
 function hook_block_configure($delta = '') {
@@ -104,10 +97,6 @@ function hook_block_configure($delta = '
 /**
  * Save the configuration options.
  *
- * Any module can export a block (or blocks) to be displayed by defining
- * the _block hook. This hook is called by theme.inc to display a block,
- * and also by block.module to procure the list of available blocks.
- *
  * @param $delta
  *   Which block to save the settings for. This is a descriptive string used
  *   to identify blocks within each module and also within the theme system.
@@ -116,9 +105,6 @@ function hook_block_configure($delta = '
  * @param $edit
  *   The submitted form data from the configuration form.
  *
- * After completing your blocks, do not forget to enable them in the
- * block admin menu.
- *
  * For a detailed usage example, see block_example.module.
  */
 function hook_block_save($delta = '', $edit = array()) {
@@ -130,10 +116,6 @@ function hook_block_save($delta = '', $e
 /**
  * Process the block when enabled in a region in order to view its contents.
  *
- * Any module can export a block (or blocks) to be displayed by defining
- * the _block hook. This hook is called by theme.inc to display a block,
- * and also by block.module to procure the list of available blocks.
- *
  * @param $delta
  *   Which block to return. This is a descriptive string used to identify
  *   blocks within each module and also within the theme system.
@@ -148,9 +130,6 @@ function hook_block_save($delta = '', $e
  * content you want to display to your users. If the "content" element is empty,
  * no block will be displayed even if "subject" is present.
  *
- * After completing your blocks, do not forget to enable them in the
- * block admin menu.
- *
  * For a detailed usage example, see block_example.module.
  */
 function hook_block_view($delta = '') {
