summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-04 16:20:20 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-04 16:20:20 +0000
commit1dc503a56ac29911aae2c2092639a51355c5f1f2 (patch)
treee12679c0acfa45b3c83633689291e6723f48c0cd /includes
parent0a1009e5f4c400d3be8443eb4c243f0a5e8d9643 (diff)
downloadbrdo-1dc503a56ac29911aae2c2092639a51355c5f1f2.tar.gz
brdo-1dc503a56ac29911aae2c2092639a51355c5f1f2.tar.bz2
#669374 by jhodgdon: Change @verbatim in Doxygen to @code.
Diffstat (limited to 'includes')
-rw-r--r--includes/install.inc4
-rw-r--r--includes/theme.inc8
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.