From c8a1f5bc81fea184e5ed249c98d8039a6270d81c Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Wed, 30 May 2012 08:50:17 -0700 Subject: [PATCH] Issue #1601136 by Chaulky: Fix param docs in drupal_validate_form function --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index 3ef32ab4157..a86510e0501 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1086,7 +1086,7 @@ function drupal_prepare_form($form_id, &$form, &$form_state) { * A keyed array containing the current state of the form. The current * user-submitted data is stored in $form_state['values'], though * form validation functions are passed an explicit copy of the - * values for the sake of simplicity. Validation handlers can also + * values for the sake of simplicity. Validation handlers can also use * $form_state to pass information on to submit handlers. For example: * $form_state['data_for_submission'] = $data; * This technique is useful when validation requires file parsing,