summaryrefslogtreecommitdiff
path: root/includes/form.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-25 10:38:35 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-25 10:38:35 +0000
commitaf3f94b37ebb4e6b2d03f937e40a157a17dff223 (patch)
tree002f4e23f118c3324f7cf2bceb781c441f55406f /includes/form.inc
parent4f6cf1d1a1ac7f6ef0295cbdcf24ea980fda61b7 (diff)
downloadbrdo-af3f94b37ebb4e6b2d03f937e40a157a17dff223.tar.gz
brdo-af3f94b37ebb4e6b2d03f937e40a157a17dff223.tar.bz2
- Patch #693614 by asimmonds: fixed PHPDoc spelling typos.
Diffstat (limited to 'includes/form.inc')
-rw-r--r--includes/form.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/form.inc b/includes/form.inc
index f9f0a27df..401c881b4 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -776,7 +776,7 @@ function drupal_prepare_form($form_id, &$form, &$form_state) {
* form validation functions are passed an explicit copy of the
* values for the sake of simplicity. Validation handlers can also
* $form_state to pass information on to submit handlers. For example:
- * $form_state['data_for_submision'] = $data;
+ * $form_state['data_for_submission'] = $data;
* This technique is useful when validation requires file parsing,
* web service requests, or other expensive requests that should
* not be repeated in the submission step.
@@ -881,7 +881,7 @@ function drupal_redirect_form($form_state) {
* form validation functions are passed an explicit copy of the
* values for the sake of simplicity. Validation handlers can also
* $form_state to pass information on to submit handlers. For example:
- * $form_state['data_for_submision'] = $data;
+ * $form_state['data_for_submission'] = $data;
* This technique is useful when validation requires file parsing,
* web service requests, or other expensive requests that should
* not be repeated in the submission step.
@@ -3413,7 +3413,7 @@ function batch_process($redirect = NULL, $url = 'batch', $redirect_callback = 'd
// The batch is now completely built. Allow other modules to make changes
// to the batch so that it is easier to reuse batch processes in other
- // enviroments.
+ // environments.
drupal_alter('batch', $batch);
// Assign an arbitrary id: don't rely on a serial column in the 'batch'