summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-05-05 07:02:13 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-05-05 07:02:13 +0000
commit4ce4c4ebf0d38560b0bf524c14641d50decfcb8c (patch)
tree4f54802e8cab931de11bed2b8aa9e47538a92a87
parente0be60f6128709f944f1aa56c92b3342006761b9 (diff)
downloadbrdo-4ce4c4ebf0d38560b0bf524c14641d50decfcb8c.tar.gz
brdo-4ce4c4ebf0d38560b0bf524c14641d50decfcb8c.tar.bz2
#743124 by ldpm: Small correction to hook_form_alter() docs.
-rw-r--r--modules/system/system.api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index 64835c86a..4243596d7 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -1255,7 +1255,7 @@ function hook_page_alter(&$page) {
* Perform alterations before a form is rendered.
*
* One popular use of this hook is to add form elements to the node form. When
- * altering a node form, the node object retrieved at from $form['#node'].
+ * altering a node form, the node object can be accessed at $form['#node'].
*
* Note that instead of hook_form_alter(), which is called for all forms, you
* can also use hook_form_FORM_ID_alter() to alter a specific form. For each