Index: search.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.module,v
retrieving revision 1.250.2.10
diff -u -r1.250.2.10 search.module
--- search.module	28 May 2010 15:20:35 -0000	1.250.2.10
+++ search.module	22 Jul 2010 17:42:06 -0000
@@ -988,15 +988,14 @@
  * for all of the search features to work.
  *
  * There are three ways to interact with the search system:
- * - Specifically for searching nodes, you can implement nodeapi('update index')
- *   and nodeapi('search result'). However, note that the search system already
+ * - Specifically for searching nodes, you can implement hook_node_update_index()
+ *   and hook_node_search_result(). However, note that the search system already
  *   indexes all visible output of a node, i.e. everything displayed normally
- *   by hook_view() and hook_nodeapi('view'). This is usually sufficient.
- *   You should only use this mechanism if you want additional, non-visible data
- *   to be indexed.
+ *   by hook_view() and hook_node_view(). This is usually sufficient.
+ *   You should only use this mechanism if you want additional, non-visible
+ *   data to be indexed.
  * - Implement hook_search(). This will create a search tab for your module on
- *   the /search page with a simple keyword search form. You may optionally
- *   implement hook_search_item() to customize the display of your results.
+ *   the /search page with a simple keyword search form.
  * - Implement hook_update_index(). This allows your module to use Drupal's
  *   HTML indexing mechanism for searching full text efficiently.
  *
