diff --git a/includes/common.inc b/includes/common.inc index cb756a0f8ce25b4cc5ce5d6aa5f75ff7bb559c1b..8aaa1931c22ccda5f083994aeb1bb61ea4a8efd7 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3495,7 +3495,7 @@ function drupal_write_record($table, &$object, $update = array()) { * White-space generally doesn't matter, except inside values. * e.g. * - * @verbatim + * @code * key = value * key = "value" * key = 'value' @@ -3508,16 +3508,16 @@ function drupal_write_record($table, &$object, $update = array()) { * key * = * 'value' - * @endverbatim + * @endcode * * Arrays are created using a GET-like syntax: * - * @verbatim + * @code * key[] = "numeric array" * key[index] = "associative array" * key[index][] = "nested numeric array" * key[index][index] = "nested associative array" - * @endverbatim + * @endcode * * PHP constants are substituted in, but only when used as the entire value: * @@ -3533,14 +3533,14 @@ function drupal_write_record($table, &$object, $update = array()) { * - package: The name of the package of modules this module belongs to. * * Example of .info file: - * @verbatim + * @code * name = Forum * description = Enables threaded discussions about general topics. * dependencies[] = taxonomy * dependencies[] = comment * package = Core - optional * version = VERSION - * @endverbatim + * @endcode * * @param $filename * The file we are parsing. Accepts file with relative or absolute path. diff --git a/includes/theme.inc b/includes/theme.inc index 31614c4b9365a20a606266d781e916e7d6f7c031..4bd6d2c2f545dc6f7492b042c0b4d84b9241f4cf 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1274,7 +1274,7 @@ function theme_submenu($links) { * - Any HTML attributes, such as "colspan", to apply to the table cell. * * Here's an example for $rows: - * @verbatim + * @code * $rows = array( * // Simple row * array( @@ -1285,7 +1285,7 @@ function theme_submenu($links) { * 'data' => array('Cell 1', array('data' => 'Cell 2', 'colspan' => 2)), 'class' => 'funky' * ) * ); - * @endverbatim + * @endcode * * @param $attributes * An array of HTML attributes to apply to the table tag.