diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-07 17:56:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-07 17:56:41 +0000 |
commit | a3fccfa5244755eb85d4a16a4f8a29695fb18b24 (patch) | |
tree | 53cbf7c640360ae55126fc4866a3e57319cd3cb3 | |
parent | 7bf0fbf4b6b8b0a185f307de8bf5f19669ab01f0 (diff) | |
download | brdo-a3fccfa5244755eb85d4a16a4f8a29695fb18b24.tar.gz brdo-a3fccfa5244755eb85d4a16a4f8a29695fb18b24.tar.bz2 |
#903704 by bleen18: Fixed typo in file number.module.
-rw-r--r-- | modules/field/modules/number/number.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/modules/number/number.module b/modules/field/modules/number/number.module index cfc1b6d62..cf31d1b27 100644 --- a/modules/field/modules/number/number.module +++ b/modules/field/modules/number/number.module @@ -120,7 +120,7 @@ function number_field_instance_settings_form($field, $instance) { '#title' => t('Suffix'), '#default_value' => $settings['suffix'], '#size' => 60, - '#description' => t("Define a string that should suffixed to the value, like ' m', ' kb/s'. Leave blank for none. Separate singular and plural values with a pipe ('pound|pounds')."), + '#description' => t("Define a string that should be suffixed to the value, like ' m', ' kb/s'. Leave blank for none. Separate singular and plural values with a pipe ('pound|pounds')."), ); return $form; |