diff --git a/core/modules/field/field.attach.inc b/core/modules/field/field.attach.inc index 580084f..69102f4 100644 --- a/core/modules/field/field.attach.inc +++ b/core/modules/field/field.attach.inc @@ -797,7 +797,7 @@ function _field_invoke_widget_target() { * @endcode * * Additionally, some processing data is placed in $form_state, and can be - * accessed by field_form_get_Drupal::state() and field_form_set_Drupal::state(). + * accessed by field_form_get_state() and field_form_set_state(). * * @param \Drupal\Core\Entity\EntityInterface $entity * The entity for which to load form elements, used to initialize @@ -817,8 +817,8 @@ function _field_invoke_widget_target() { * An associative array of additional options. See field_invoke_method() for * details. * - * @see field_form_get_Drupal::state() - * @see field_form_set_Drupal::state() + * @see field_form_get_state() + * @see field_form_set_state() */ function field_attach_form(EntityInterface $entity, &$form, &$form_state, $langcode = NULL, array $options = array()) { // Set #parents to 'top-level' by default. diff --git a/core/modules/field/field.form.inc b/core/modules/field/field.form.inc index 4bccf60..203a112 100644 --- a/core/modules/field/field.form.inc +++ b/core/modules/field/field.form.inc @@ -193,7 +193,7 @@ function field_add_more_js($form, $form_state) { * - errors: The array of field validation errors reported on the field. This * entry is populated at field_attach_form_validate() time. * - * @see field_form_set_Drupal::state() + * @see field_form_set_state() */ function field_form_get_state($parents, $field_name, $langcode, &$form_state) { $form_state_parents = _field_form_state_parents($parents, $field_name, $langcode); @@ -212,10 +212,10 @@ function field_form_get_state($parents, $field_name, $langcode, &$form_state) { * @param $form_state * The form state. * @param $field_state - * The array of data to store. See field_form_get_Drupal::state() for the structure + * The array of data to store. See field_form_get_state() for the structure * and content of the array. * - * @see field_form_get_Drupal::state() + * @see field_form_get_state() */ function field_form_set_state($parents, $field_name, $langcode, &$form_state, $field_state) { $form_state_parents = _field_form_state_parents($parents, $field_name, $langcode);