diff --git a/.htaccess b/.htaccess
index fd7bd29..6393b0d 100644
--- a/.htaccess
+++ b/.htaccess
@@ -94,14 +94,14 @@ AddEncoding gzip svgz
   # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
   #
   # To redirect all users to access the site WITH the 'www.' prefix,
-  # (http://example.com/... will be redirected to http://www.example.com/...)
+  # (http://example.com/foo will be redirected to http://www.example.com/...)
   # uncomment the following:
   # RewriteCond %{HTTP_HOST} .
   # RewriteCond %{HTTP_HOST} !^www\. [NC]
   # RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
   #
   # To redirect all users to access the site WITHOUT the 'www.' prefix,
-  # (http://www.example.com/... will be redirected to http://example.com/...)
+  # (http://www.example.com/... will be redirected to http://example.com/foo)
   # uncomment the following:
   # RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
   # RewriteRule ^ http%{ENV:protossl}://%1%{REQUEST_URI} [L,R=301]
diff --git a/core/CHANGELOG.txt b/core/CHANGELOG.txt
index 83fc766..d7ddd95 100644
--- a/core/CHANGELOG.txt
+++ b/core/CHANGELOG.txt
@@ -95,7 +95,7 @@ Drupal 8.0, xxxx-xx-xx (development version)
       * Added language selectors to most configuration options (views, menus,
         etc.)
       * Added a configuration translation user interface that works with any
-        configuration with translatable values (blocks, views, fields, etc).
+        configuration with translatable values (blocks, views, fields, etc.).
       * Added language options to block visibility.
     * Much improved language APIs for developers:
       * Added simple APIs and hooks to save/delete/update languages.
@@ -680,7 +680,7 @@ Drupal 4.7.0, 2006-05-01
 - Added support for PHP5's 'mysqli' extension.
 - Search module:
     * Made indexer smarter and more robust.
-    * Added advanced search operators (e.g. phrase, node type, ...).
+    * Added advanced search operators (e.g. phrase, node type, etc.).
     * Added customizable result ranking.
 - PostgreSQL support:
     * Removed dependency on PL/pgSQL procedural language.
@@ -1057,7 +1057,7 @@ Drupal 4.0.0, 2002-06-15
     * Made each cloud site have its own settings.
     * Modules and themes can now be enabled/disabled using the administration pages.
     * Added URL abstraction for links.
-    * Usability changes (renamed links, better UI, etc).
+    * Usability changes (renamed links, better UI, etc.).
 - Collaboratively revised and expanded the Drupal documentation.
 
 Drupal 3.0.1, 2001-10-15
diff --git a/core/lib/Drupal/Component/Utility/NestedArray.php b/core/lib/Drupal/Component/Utility/NestedArray.php
index e123b4a..8829fc8 100644
--- a/core/lib/Drupal/Component/Utility/NestedArray.php
+++ b/core/lib/Drupal/Component/Utility/NestedArray.php
@@ -42,7 +42,7 @@ class NestedArray {
    * $key_exists = NULL;
    * $value = NestedArray::getValue($form, $parents, $key_exists);
    * if ($key_exists) {
-   *   // ... do something with $value ...
+   *   // Do something with $value.
    * }
    * @endcode
    *
diff --git a/core/lib/Drupal/Core/Archiver/ArchiveTar.php b/core/lib/Drupal/Core/Archiver/ArchiveTar.php
index ac54bde..4b17d31 100644
--- a/core/lib/Drupal/Core/Archiver/ArchiveTar.php
+++ b/core/lib/Drupal/Core/Archiver/ArchiveTar.php
@@ -451,7 +451,7 @@ function addString($p_filename, $p_string)
         if (!$this->_openAppend())
             return false;
 
-        // Need to check the get back to the temporary file ? ....
+        // Need to check the get back to the temporary file ?
         $v_result = $this->_addString($p_filename, $p_string);
 
         $this->_writeFooter();
@@ -1112,13 +1112,13 @@ function _writeHeader($p_filename, $p_stored_filename)
 
         // ----- Calculate the checksum
         $v_checksum = 0;
-        // ..... First part of the header
+        // First part of the header.
         for ($i=0; $i<148; $i++)
             $v_checksum += ord(substr($v_binary_data_first,$i,1));
-        // ..... Ignore the checksum value and replace it by ' ' (space)
+      // Ignore the checksum value and replace it by ' ' (space).
         for ($i=148; $i<156; $i++)
             $v_checksum += ord(' ');
-        // ..... Last part of the header
+        // Last part of the header.
         for ($i=156, $j=0; $i<512; $i++, $j++)
             $v_checksum += ord(substr($v_binary_data_last,$j,1));
 
@@ -1243,13 +1243,13 @@ function _writeLongHeader($p_filename)
 
         // ----- Calculate the checksum
         $v_checksum = 0;
-        // ..... First part of the header
+        // First part of the header.
         for ($i=0; $i<148; $i++)
             $v_checksum += ord(substr($v_binary_data_first,$i,1));
-        // ..... Ignore the checksum value and replace it by ' ' (space)
+        // Ignore the checksum value and replace it by ' ' (space).
         for ($i=148; $i<156; $i++)
             $v_checksum += ord(' ');
-        // ..... Last part of the header
+        // Last part of the header.
         for ($i=156, $j=0; $i<512; $i++, $j++)
             $v_checksum += ord(substr($v_binary_data_last,$j,1));
 
@@ -1294,13 +1294,13 @@ function _readHeader($v_binary_data, &$v_header)
         }
         // ----- Calculate the checksum
         $v_checksum = 0;
-        // ..... First part of the header
+        // First part of the header.
         for ($i=0; $i<148; $i++)
             $v_checksum+=ord(substr($v_binary_data,$i,1));
-        // ..... Ignore the checksum value and replace it by ' ' (space)
+        // Ignore the checksum value and replace it by ' ' (space).
         for ($i=148; $i<156; $i++)
             $v_checksum += ord(' ');
-        // ..... Last part of the header
+        // Last part of the header.
         for ($i=156; $i<512; $i++)
            $v_checksum+=ord(substr($v_binary_data,$i,1));
 
@@ -1657,7 +1657,7 @@ function _extractList($p_path, &$p_list_detail, $p_mode,
           $this->_jumpBlock(ceil(($v_header['size']/512)));
       }
 
-      /* TBC : Seems to be unused ...
+      /* TBC : Seems to be unused.
       if ($this->_compress)
         $v_end_of_file = @gzeof($this->_file);
       else
diff --git a/core/lib/Drupal/Core/Asset/CssOptimizer.php b/core/lib/Drupal/Core/Asset/CssOptimizer.php
index 1090d5a..d7c106f 100644
--- a/core/lib/Drupal/Core/Asset/CssOptimizer.php
+++ b/core/lib/Drupal/Core/Asset/CssOptimizer.php
@@ -142,7 +142,7 @@ protected function loadNestedFile($matches) {
     $directory = $directory == '.' ? '' : $directory .'/';
 
     // Alter all internal url() paths. Leave external paths alone. We don't need
-    // to normalize absolute paths here (i.e. remove folder/... segments)
+    // to normalize absolute paths here (i.e. remove folder/* segments)
     // because that will be done later.
     return preg_replace('/url\(\s*([\'"]?)(?![a-z]+:|\/+)([^\'")]+)([\'"]?)\s*\)/i', 'url(\1' . $directory . '\2\3)', $file);
   }
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
index 4401f65..40f9096 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
@@ -247,7 +247,7 @@ public function renameTable($table, $new_name) {
     $schema = $this->introspectSchema($table);
 
     // SQLite doesn't allow you to rename tables outside of the current
-    // database. So the syntax '...RENAME TO database.table' would fail.
+    // database. So the syntax '... RENAME TO database.table' would fail.
     // So we must determine the full table name here rather than surrounding
     // the table with curly braces in case the db_prefix contains a reference
     // to a database outside of our existing database.
diff --git a/core/lib/Drupal/Core/Entity/Display/EntityFormDisplayInterface.php b/core/lib/Drupal/Core/Entity/Display/EntityFormDisplayInterface.php
index 57b5abf..1293d0f 100644
--- a/core/lib/Drupal/Core/Entity/Display/EntityFormDisplayInterface.php
+++ b/core/lib/Drupal/Core/Entity/Display/EntityFormDisplayInterface.php
@@ -40,7 +40,7 @@
    *   // widget is 'single-value' (provides the input for one field value,
    *   // most common case), and will therefore be repeated as many times as
    *   // needed, or 'multiple-values' (one single widget allows the input of
-   *   // several values, e.g checkboxes, select box...).
+   *   // several values, e.g checkboxes, select box, etc.).
    *   'field_foo' => array(
    *     '#access' => TRUE if the current user has 'edit' grants for the field,
    *       FALSE if not.
diff --git a/core/lib/Drupal/Core/Field/WidgetInterface.php b/core/lib/Drupal/Core/Field/WidgetInterface.php
index 25978be..785e4b7 100644
--- a/core/lib/Drupal/Core/Field/WidgetInterface.php
+++ b/core/lib/Drupal/Core/Field/WidgetInterface.php
@@ -66,7 +66,7 @@ public function settingsSummary();
    * hook_field_widget_WIDGET_TYPE_form_alter().
    *
    * The FAPI element callbacks (such as #process, #element_validate,
-   * #value_callback...) used by the widget do not have access to the original
+   * #value_callback, etc.) used by the widget do not have access to the original
    * $field_definition passed to the widget's constructor. Therefore, if any
    * information is needed from that definition by those callbacks, the widget
    * implementing this method, or a hook_field_widget[_WIDGET_TYPE]_form_alter()
@@ -77,7 +77,7 @@ public function settingsSummary();
    * @param \Drupal\Core\Field\FieldItemListInterface $items
    *   Array of default values for this field.
    * @param int $delta
-   *   The order of this item in the array of sub-elements (0, 1, 2, etc).
+   *   The order of this item in the array of sub-elements (0, 1, 2, etc.).
    * @param array $element
    *   A form element array containing basic properties for the widget:
    *   - #field_parents: The 'parents' space for the field in the form. Most
diff --git a/core/modules/block/src/BlockForm.php b/core/modules/block/src/BlockForm.php
index 3ff21f6..9c22045 100644
--- a/core/modules/block/src/BlockForm.php
+++ b/core/modules/block/src/BlockForm.php
@@ -377,7 +377,7 @@ public function getUniqueMachineName(BlockInterface $block) {
     }, $block_ids);
 
     // Iterate through potential IDs until we get a new one. E.g.
-    // 'plugin', 'plugin_2', 'plugin_3'...
+    // 'plugin', 'plugin_2', 'plugin_3', etc.
     $count = 1;
     $machine_default = $suggestion;
     while (in_array($machine_default, $block_ids)) {
diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module
index 155a6b6..145bb4e 100644
--- a/core/modules/comment/comment.module
+++ b/core/modules/comment/comment.module
@@ -258,7 +258,7 @@ function comment_prepare_thread(&$comments) {
  * @param \Drupal\comment\CommentInterface $comment
  *   The comment object.
  * @param $view_mode
- *   (optional) View mode, e.g. 'full', 'teaser'... Defaults to 'full'.
+ *   (optional) View mode, e.g. 'full', 'teaser', etc. Defaults to 'full'.
  * @param $langcode
  *   (optional) A language code to use for rendering. Defaults to the global
  *   content language of the current request.
@@ -276,7 +276,7 @@ function comment_view(CommentInterface $comment, $view_mode = 'full', $langcode
  * @param $comments
  *   An array of comments as returned by entity_load_multiple().
  * @param $view_mode
- *   View mode, e.g. 'full', 'teaser'...
+ *   View mode, e.g. 'full', 'teaser', etc.
  * @param $langcode
  *   (optional) A string indicating the language field values are to be shown
  *   in. If no language is provided the current content language is used.
diff --git a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php
index 5f0f75d..a3b47b0 100644
--- a/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php
+++ b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php
@@ -141,9 +141,9 @@ public function fieldSettingsForm(array $form, FormStateInterface $form_state) {
     $selection_plugins = \Drupal::service('plugin.manager.entity_reference_selection')->getSelectionGroups($this->getSetting('target_type'));
     $handlers_options = array();
     foreach (array_keys($selection_plugins) as $selection_group_id) {
-      // We only display base plugins (e.g. 'default', 'views', ...) and not
+      // We only display base plugins (e.g. 'default', 'views', etc.) and not
       // entity type specific plugins (e.g. 'default:node', 'default:user',
-      // ...).
+      // etc.).
       if (array_key_exists($selection_group_id, $selection_plugins[$selection_group_id])) {
         $handlers_options[$selection_group_id] = String::checkPlain($selection_plugins[$selection_group_id][$selection_group_id]['label']);
       }
diff --git a/core/modules/field/src/Tests/FormTest.php b/core/modules/field/src/Tests/FormTest.php
index e8b1323..0e0824c 100644
--- a/core/modules/field/src/Tests/FormTest.php
+++ b/core/modules/field/src/Tests/FormTest.php
@@ -257,7 +257,7 @@ function testFieldFormUnlimited() {
     $this->assertFieldByName("{$field_name}[0][value]", '', 'Widget 1 is displayed');
     $this->assertFieldByName("{$field_name}[1][value]", '', 'New widget is displayed');
     $this->assertNoField("{$field_name}[2][value]", 'No extraneous widget is displayed');
-    // TODO : check that non-field inpurs are preserved ('title')...
+    // TODO : check that non-field inpurs are preserved ('title'), etc.
 
     // Yet another time so that we can play with more values -> 3 widgets.
     $this->drupalPostForm(NULL, array(), t('Add another item'));
diff --git a/core/modules/filter/src/Tests/FilterUnitTest.php b/core/modules/filter/src/Tests/FilterUnitTest.php
index 2c2a5c9..8449f11 100644
--- a/core/modules/filter/src/Tests/FilterUnitTest.php
+++ b/core/modules/filter/src/Tests/FilterUnitTest.php
@@ -512,7 +512,7 @@ function testUrlFilter() {
       ),
       // Absolute URL protocols.
       // The list to test is found in the beginning of _filter_url() at
-      // $protocols = $this->config('system.filter')->get('protocols')... (approx line 1555).
+      // $protocols = $this->config('system.filter')->get('protocols').
       '
 https://example.com,
 ftp://ftp.example.com,
diff --git a/core/modules/image/image.module b/core/modules/image/image.module
index 0418c72..bac32f9 100644
--- a/core/modules/image/image.module
+++ b/core/modules/image/image.module
@@ -177,7 +177,7 @@ function image_file_download($uri) {
       // Confirm there's at least one module granting access and none denying access.
       if (!empty($headers) && !in_array(-1, $headers)) {
         return array(
-          // Send headers describing the image's size, and MIME-type...
+          // Send headers describing the image's size, and MIME-type.
           'Content-Type' => $image->getMimeType(),
           'Content-Length' => $image->getFileSize(),
           // By not explicitly setting them here, this uses normal Drupal
diff --git a/core/modules/locale/src/StringDatabaseStorage.php b/core/modules/locale/src/StringDatabaseStorage.php
index d09e5a6..2996fef 100644
--- a/core/modules/locale/src/StringDatabaseStorage.php
+++ b/core/modules/locale/src/StringDatabaseStorage.php
@@ -433,7 +433,7 @@ protected function dbStringSelect(array $conditions, array $options = array()) {
       }
     }
 
-    // Process other options, string filter, query limit, etc...
+    // Process other options, string filter, query limit, etc.
     if (!empty($options['filters'])) {
       if (count($options['filters']) > 1) {
         $filter = db_or();
diff --git a/core/modules/locale/src/StringInterface.php b/core/modules/locale/src/StringInterface.php
index 046f414..0992c1d 100644
--- a/core/modules/locale/src/StringInterface.php
+++ b/core/modules/locale/src/StringInterface.php
@@ -156,7 +156,7 @@ public function getValues(array $fields);
    *
    * Locations are arbitrary pairs of type and name strings, used to store
    * information about the origins of the string, like the file name it
-   * was found on, the path on which it was discovered, etc...
+   * was found on, the path on which it was discovered, etc.
    *
    * A string can have any number of locations since the same string may be
    * found on different places of Drupal code and configuration.
@@ -179,7 +179,7 @@ public function getLocations($check_only = FALSE);
    * @param string $name
    *   Location name. Drupal path in case of online discovered translations,
    *   file path in case of imported strings, configuration name for strings
-   *   that come from configuration, etc...
+   *   that come from configuration, etc.
    *
    * @return $this
    */
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index 611ae17..b69d8ca 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -564,7 +564,7 @@ function node_theme_suggestions_node(array $variables) {
  *   An associative array containing:
  *   - elements: An array of elements to display in view mode.
  *   - node: The node object.
- *   - view_mode: View mode; e.g., 'full', 'teaser'...
+ *   - view_mode: View mode; e.g., 'full', 'teaser', etc.
  */
 function template_preprocess_node(&$variables) {
   $variables['view_mode'] = $variables['elements']['#view_mode'];
@@ -806,7 +806,7 @@ function node_get_recent($number = 10) {
  * @param \Drupal\node\NodeInterface $node
  *   A node entity.
  * @param $view_mode
- *   (optional) View mode, e.g., 'full', 'teaser'... Defaults to 'full.'
+ *   (optional) View mode, e.g., 'full', 'teaser', etc. Defaults to 'full.'
  * @param $langcode
  *   (optional) A language code to use for rendering. Defaults to NULL which is
  *   the global content language of the current request.
@@ -824,7 +824,7 @@ function node_view(NodeInterface $node, $view_mode = 'full', $langcode = NULL) {
  * @param $nodes
  *   An array of nodes as returned by Node::loadMultiple().
  * @param $view_mode
- *   (optional) View mode, e.g., 'full', 'teaser'... Defaults to 'teaser.'
+ *   (optional) View mode, e.g., 'full', 'teaser', etc. Defaults to 'teaser.'
  * @param $langcode
  *   (optional) A language code to use for rendering. Defaults to the global
  *   content language of the current request.
diff --git a/core/modules/simpletest/simpletest.module b/core/modules/simpletest/simpletest.module
index 513d46d..11b0d52 100644
--- a/core/modules/simpletest/simpletest.module
+++ b/core/modules/simpletest/simpletest.module
@@ -465,7 +465,7 @@ function simpletest_log_read($test_id, $database_prefix, $test_class) {
  *     $groups['Block'] => array(
  *       'BlockTestCase' => array(
  *         'name' => 'Block functionality',
- *         'description' => 'Add, edit and delete custom block...',
+ *         'description' => 'Add, edit and delete custom block.',
  *         'group' => 'Block',
  *       ),
  *     );
diff --git a/core/modules/system/entity.api.php b/core/modules/system/entity.api.php
index dd096ca..dc2ef17 100644
--- a/core/modules/system/entity.api.php
+++ b/core/modules/system/entity.api.php
@@ -1497,7 +1497,7 @@ function hook_entity_build_defaults_alter(array &$build, \Drupal\Core\Entity\Ent
  *   An associative array containing:
  *   - entity_type: The entity type, e.g., 'node' or 'user'.
  *   - bundle: The bundle, e.g., 'page' or 'article'.
- *   - view_mode: The view mode, e.g. 'full', 'teaser'...
+ *   - view_mode: The view mode, e.g. 'full', 'teaser', etc.
  *
  * @ingroup entity_crud
  */
@@ -1606,7 +1606,7 @@ function hook_ENTITY_TYPE_prepare_form(\Drupal\Core\Entity\EntityInterface $enti
  *   An associative array containing:
  *   - entity_type: The entity type, e.g., 'node' or 'user'.
  *   - bundle: The bundle, e.g., 'page' or 'article'.
- *   - form_mode: The form mode, e.g. 'default', 'profile', 'register'...
+ *   - form_mode: The form mode, e.g. 'default', 'profile', 'register', etc.
  *
  * @ingroup entity_crud
  */
diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index c247d14..2c6508b 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -205,7 +205,7 @@ function taxonomy_check_vocabulary_hierarchy(VocabularyInterface $vocabulary, $c
  * @param \Drupal\taxonomy\Entity\Term $term
  *   A taxonomy term object.
  * @param string $view_mode
- *   View mode, e.g. 'full', 'teaser'...
+ *   View mode, e.g. 'full', 'teaser', etc.
  * @param string $langcode
  *   (optional) A language code to use for rendering. Defaults to the global
  *   content language of the current request.
@@ -223,7 +223,7 @@ function taxonomy_term_view(Term $term, $view_mode = 'full', $langcode = NULL) {
  * @param array $terms
  *   An array of taxonomy terms as returned by Term::loadMultiple().
  * @param string $view_mode
- *   View mode, e.g. 'full', 'teaser'...
+ *   View mode, e.g. 'full', 'teaser', etc.
  * @param string $langcode
  *   (optional) A language code to use for rendering. Defaults to the global
  *   content language of the current request.
diff --git a/core/modules/update/src/Tests/UpdateContribTest.php b/core/modules/update/src/Tests/UpdateContribTest.php
index dde3e52..1aa4733 100644
--- a/core/modules/update/src/Tests/UpdateContribTest.php
+++ b/core/modules/update/src/Tests/UpdateContribTest.php
@@ -342,7 +342,7 @@ function testUpdateBrokenFetchURL() {
     $this->assertNoText(t('Update available'));
 
     // We need to check that this string is found as part of a project row,
-    // not just in the "Failed to get available update data for ..." message
+    // not just in the "Failed to get available update data" message
     // at the top of the page.
     $this->assertRaw('<div class="version-status">' . t('Failed to get available update data'));
 
diff --git a/core/modules/update/src/Tests/UpdateCoreTest.php b/core/modules/update/src/Tests/UpdateCoreTest.php
index 3aa598a..d39f829 100644
--- a/core/modules/update/src/Tests/UpdateCoreTest.php
+++ b/core/modules/update/src/Tests/UpdateCoreTest.php
@@ -277,7 +277,7 @@ function testModulePageSecurityUpdate() {
 
     // Make sure duplicate messages don't appear on Update status pages.
     $this->drupalGet('admin/reports/status');
-    // We're expecting "There is a security update..." inside the status report
+    // We're expecting "There is a security update ..." inside the status report
     // itself, but the drupal_set_message() appears as an li so we can prefix
     // with that and search for the raw HTML.
     $this->assertNoRaw('<li>' . t('There is a security update available for your version of Drupal.'));
@@ -294,7 +294,7 @@ function testModulePageSecurityUpdate() {
    */
   function testServiceUnavailable() {
     $this->refreshUpdateStatus(array(), '503-error');
-    // Ensure that no "Warning: SimpleXMLElement..." parse errors are found.
+    // Ensure that no "Warning: SimpleXMLElement ..." parse errors are found.
     $this->assertNoText('SimpleXMLElement');
     $this->assertUniqueText(t('Failed to get available update data for one project.'));
   }
diff --git a/core/modules/user/user.module b/core/modules/user/user.module
index bd99614..07eb2ed 100644
--- a/core/modules/user/user.module
+++ b/core/modules/user/user.module
@@ -938,7 +938,7 @@ function user_view($account, $view_mode = 'full', $langcode = NULL) {
  * @param $accounts
  *   An array of user accounts as returned by user_load_multiple().
  * @param $view_mode
- *   (optional) View mode, e.g., 'full', 'teaser'... Defaults to 'teaser.'
+ *   (optional) View mode, e.g., 'full', 'teaser', etc. Defaults to 'teaser.'
  * @param $langcode
  *   (optional) A language code to use for rendering. Defaults to the global
  *   content language of the current request.
diff --git a/core/modules/views/src/Form/ViewsForm.php b/core/modules/views/src/Form/ViewsForm.php
index cdf39eb..ce78932 100644
--- a/core/modules/views/src/Form/ViewsForm.php
+++ b/core/modules/views/src/Form/ViewsForm.php
@@ -135,7 +135,8 @@ public function buildForm(array $form, FormStateInterface $form_state, ViewExecu
 
     $options = array('query' => $query);
     $form['#action'] = $view->hasUrl() ? $view->getUrl()->setOptions($options)->toString() : Url::fromRoute('<current>')->setOptions($options)->toString();
-    // Tell the preprocessor whether it should hide the header, footer, pager...
+    // Tell the preprocessor whether it should hide the header, footer, pager,
+    // etc.
     $form['show_view_elements'] = array(
       '#type' => 'value',
       '#value' => ($step == 'views_form_views_form') ? TRUE : FALSE,
diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php
index 1be46f9..42dda8e 100644
--- a/core/modules/views/src/Plugin/views/query/Sql.php
+++ b/core/modules/views/src/Plugin/views/query/Sql.php
@@ -1403,7 +1403,7 @@ function execute(ViewExecutable $view) {
       $count_query = $count_query->countQuery();
 
       // Add additional arguments as a fake condition.
-      // XXX: this doesn't work... because PDO mandates that all bound arguments
+      // XXX: this doesn't work. because PDO mandates that all bound arguments
       // are used on the query. TODO: Find a better way to do this.
       if (!empty($additional_arguments)) {
         // $query->where('1 = 1', $additional_arguments);
diff --git a/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php b/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
index db300db..1462f38 100644
--- a/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
+++ b/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php
@@ -269,7 +269,7 @@ protected function leftQuery($options) {
     // Not sure why, but our sort order clause doesn't have a table.
     // TODO: the call to addHandler() above to add the sort handler is probably
     // wrong -- needs attention from someone who understands it.
-    // In the meantime, this works, but with a leap of faith...
+    // In the meantime, this works, but with a leap of faith.
     $orders = &$subquery->getOrderBy();
     foreach ($orders as $order_key => $order) {
       // But if we're using a whole view, we don't know what we have!
diff --git a/core/modules/views/src/Tests/PluginInstanceTest.php b/core/modules/views/src/Tests/PluginInstanceTest.php
index 1893432..189399f 100644
--- a/core/modules/views/src/Tests/PluginInstanceTest.php
+++ b/core/modules/views/src/Tests/PluginInstanceTest.php
@@ -90,7 +90,7 @@ public function testPluginInstances() {
         if ($reflection->isSubclassOf('Drupal\views\Plugin\views\PluginBase')) {
           // Create a plugin instance and check what it is. This is not just
           // good to check they can be created but for throwing any notices for
-          // method signatures etc... too.
+          // method signatures etc. too.
           $instance = $manager->createInstance($id);
           $this->assertTrue($instance instanceof $definition['class'], format_string('Instance of @type:@id created', array('@type' => $type, '@id' => $id)));
         }
diff --git a/core/modules/views/src/Tests/QueryGroupByTest.php b/core/modules/views/src/Tests/QueryGroupByTest.php
index b580e0a..3b5f979 100644
--- a/core/modules/views/src/Tests/QueryGroupByTest.php
+++ b/core/modules/views/src/Tests/QueryGroupByTest.php
@@ -176,7 +176,7 @@ public function testGroupByNone() {
    */
   public function testGroupByCountOnlyFilters() {
     // Check if GROUP BY and HAVING are included when a view
-    // Doesn't display SUM, COUNT, MAX... functions in SELECT statement
+    // Doesn't display SUM, COUNT, MAX, etc. functions in SELECT statement
 
     for ($x = 0; $x < 10; $x++) {
       $this->storage->create(array('name' => 'name1'))->save();
diff --git a/core/modules/views_ui/src/Tests/DefaultViewsTest.php b/core/modules/views_ui/src/Tests/DefaultViewsTest.php
index 9143082..aeb5027 100644
--- a/core/modules/views_ui/src/Tests/DefaultViewsTest.php
+++ b/core/modules/views_ui/src/Tests/DefaultViewsTest.php
@@ -199,7 +199,7 @@ public function testPathDestination() {
    * @param $unique_href_part
    *   A unique string that is expected to occur within the href of the desired
    *   link. For example, if the link URL is expected to look like
-   *   "admin/structure/views/view/glossary/...", then "/glossary/" could be
+   *   "admin/structure/views/view/glossary/*", then "/glossary/" could be
    *   passed as the expected unique string.
    *
    * @return
diff --git a/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module
index f9f8996..4120925 100644
--- a/core/modules/views_ui/views_ui.module
+++ b/core/modules/views_ui/views_ui.module
@@ -322,7 +322,7 @@ function views_ui_views_analyze(ViewExecutable $view) {
 }
 
 /**
- * Truncate strings to a set length and provide a ... if they truncated.
+ * Truncate strings to a set length and provide a '...' if they truncated.
  *
  * This is often used in the UI to ensure long strings fit.
  */
diff --git a/web.config b/web.config
index b072d9b..782d4ae 100644
--- a/web.config
+++ b/web.config
@@ -35,7 +35,7 @@
         </rule>
 
     <!-- To redirect all users to access the site WITH the 'www.' prefix,
-     http://example.com/... will be redirected to http://www.example.com/...)
+     http://example.com/foo will be redirected to http://www.example.com/foo)
      adapt and uncomment the following:   -->
     <!--
         <rule name="Redirect to add www" stopProcessing="true">
@@ -48,7 +48,7 @@
     -->
 
     <!-- To redirect all users to access the site WITHOUT the 'www.' prefix,
-     http://www.example.com/... will be redirected to http://example.com/...)
+     http://www.example.com/foo will be redirected to http://example.com/foo)
      adapt and uncomment the following:   -->
     <!--
         <rule name="Redirect to remove www" stopProcessing="true">
