From 0901dc27ab0c5f4ce75fe7623518e3beff31e8fd Mon Sep 17 00:00:00 2001
From: Melissa Miller <miller.2676@osu.edu>
Date: Tue, 18 Dec 2018 16:04:03 -0800
Subject: [PATCH] update some field descriptions

---
 src/Form/ModuleConfigurationForm.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Form/ModuleConfigurationForm.php b/src/Form/ModuleConfigurationForm.php
index 50efd73..e31adeb 100644
--- a/src/Form/ModuleConfigurationForm.php
+++ b/src/Form/ModuleConfigurationForm.php
@@ -117,21 +117,21 @@ class ModuleConfigurationForm extends ConfigFormBase {
     $form['contact']['zip'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('Zip Code'),
-      '#description' => $this->t('Zip Code – formatted as 43210 or 43210-1234'),
+      '#description' => $this->t('Formatted: 43210 or 43210-1234'),
       '#default_value' => $config->get('zip'),
     );
 
     $form['contact']['phone'] = array(
       '#type' => 'tel',
       '#title' => $this->t('Phone'),
-      '#description' => $this->t('Main contact phone number for your site – formatted as 614-555-5555'),
+      '#description' => $this->t('Formatted: 614-555-5555'),
       '#default_value' => $config->get('phone'),
     );
 
     $form['contact']['fax'] = array(
       '#type' => 'tel',
       '#title' => $this->t('Fax'),
-      '#description' => $this->t('Fax number, if applicable – formatted as 614-555-5555'),
+      '#description' => $this->t('Formatted: 614-555-5555'),
       '#default_value' => $config->get('fax'),
     );
 
-- 
GitLab