diff options
-rw-r--r-- | INSTALL.txt | 2 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.admin.inc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index 37dcdb673..480b2eb10 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -101,7 +101,7 @@ INSTALLATION 4. RUN THE INSTALL SCRIPT To run the install script point your browser to the base URL of your website - (i.e. http://www.example.com). + (e.g., http://www.example.com). You will be guided through several screens to set up the database, create tables, add the first user account and provide basic web diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 0a73a1e62..1631d30b4 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -122,7 +122,7 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) { '#title' => t('Vocabulary name'), '#default_value' => $edit['name'], '#maxlength' => 255, - '#description' => t('The name for this vocabulary. i.e. <em>"Tags"</em>.'), + '#description' => t('The name for this vocabulary, e.g., <em>"Tags"</em>.'), '#required' => TRUE, ); $form['identification']['description'] = array('#type' => 'textarea', @@ -134,7 +134,7 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) { '#title' => t('Help text'), '#maxlength' => 255, '#default_value' => $edit['help'], - '#description' => t('Instructions to present to the user when selecting terms. i.e. <em>"Enter a comma separated list of words".</em>'), + '#description' => t('Instructions to present to the user when selecting terms, e.g., <em>"Enter a comma separated list of words"</em>.'), ); $form['content_types'] = array( '#type' => 'fieldset', |