From af3f94b37ebb4e6b2d03f937e40a157a17dff223 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 25 Jan 2010 10:38:35 +0000 Subject: - Patch #693614 by asimmonds: fixed PHPDoc spelling typos. --- modules/field/field.api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/field') diff --git a/modules/field/field.api.php b/modules/field/field.api.php index 89f3e6a9b..355301254 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -1474,12 +1474,12 @@ function hook_field_create_instance($instance) { * @param $has_data * Whether any data already exists for this field. * @return - * Throws a FieldUpdateForbiddenException to prevent the update from occuring. + * Throws a FieldUpdateForbiddenException to prevent the update from occurring. */ function hook_field_update_field_forbid($field, $prior_field, $has_data) { // A 'list' field stores integer keys mapped to display values. If // the new field will have fewer values, and any data exists for the - // abandonded keys, the field will have no way to display them. So, + // abandoned keys, the field will have no way to display them. So, // forbid such an update. if ($has_data && count($field['settings']['allowed_values']) < count($prior_field['settings']['allowed_values'])) { // Identify the keys that will be lost. -- cgit v1.2.3