Index: modules/search/search.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.api.php,v
retrieving revision 1.26
diff -u -r1.26 search.api.php
--- modules/search/search.api.php	12 May 2010 15:53:43 -0000	1.26
+++ modules/search/search.api.php	1 Jun 2010 00:11:47 -0000
@@ -218,7 +218,7 @@
  * its search results, which is otherwise themed using theme('search_results').
  *
  * Note that by default, theme('search_results') and theme('search_result')
- * work together to create a definition list (DL). So your hook_search_page()
+ * work together to create an ordered list (OL). So your hook_search_page()
  * implementation should probably do this as well.
  *
  * @see search-result.tpl.php, search-results.tpl.php
@@ -231,12 +231,12 @@
  *   a pager included.
  */
 function hook_search_page($results) {
-  $output = '<dl class="search-results">';
+  $output = '<ol class="search-results">';
 
   foreach ($results as $entry) {
     $output .= theme('search_result', $entry, $type);
   }
-  $output .= '</dl>';
+  $output .= '</ol>';
   $output .= theme('pager', NULL);
 
   return $output;
