diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/install.inc | 4 | ||||
-rw-r--r-- | includes/theme.inc | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/includes/install.inc b/includes/install.inc index c2459e604..a6b63c69f 100644 --- a/includes/install.inc +++ b/includes/install.inc @@ -1066,12 +1066,12 @@ function drupal_check_module($module) { * 'Drupal'. * * Example of .info file: - * @verbatim + * @code * name = Minimal * description = Start fresh, with only a few modules enabled. * dependencies[] = block * dependencies[] = dblog - * @endverbatim + * @endcode * * @param profile * Name of profile. diff --git a/includes/theme.inc b/includes/theme.inc index 4a58329ff..775d2dc4d 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1670,7 +1670,7 @@ function theme_submenu($variables) { * - "header": Indicates this cell is a header. * - 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( @@ -1681,7 +1681,7 @@ function theme_submenu($variables) { * 'data' => array('Cell 1', array('data' => 'Cell 2', 'colspan' => 2)), 'class' => array('funky') * ) * ); - * @endverbatim + * @endcode * - attributes: An array of HTML attributes to apply to the table tag. * - caption: A localized string to use for the <caption> tag. * - colgroups: An array of column groups. Each element of the array can be @@ -1693,7 +1693,7 @@ function theme_submenu($variables) { * "data" attribute with an array of columns, each of which is an * associative array of HTML attributes. * Here's an example for $colgroup: - * @verbatim + * @code * $colgroup = array( * // COLGROUP with one COL element. * array( @@ -1711,7 +1711,7 @@ function theme_submenu($variables) { * 'class' => array('jazzy'), // Attribute for the COLGROUP element. * ), * ); - * @endverbatim + * @endcode * These optional tags are used to group and set properties on columns * within a table. For example, one may easily group three columns and * apply same background style to all. |