diff --git a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
index fce7004..ac18b5c 100644
--- a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
+++ b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
@@ -49,7 +49,7 @@
    * Implements Drupal\Component\Plugin\PluginManagerInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
-    return $this->discovery->getDefinition($plugin_id);;
+    return $this->discovery->getDefinition($plugin_id);
   }
 
   /**
diff --git a/core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php b/core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php
index cffa3f3..db711b9 100644
--- a/core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php
+++ b/core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php
@@ -48,7 +48,7 @@ function setUp() {
   function testTermAlias() {
     // Create a term in the default 'Tags' vocabulary with URL alias.
     $vocabulary = taxonomy_vocabulary_load('tags');
-    $description = $this->randomName();;
+    $description = $this->randomName();
     $edit = array(
       'name' => $this->randomName(),
       'description[value]' => $description,
diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php b/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php
index dbdba31..20813e3 100644
--- a/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php
+++ b/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php
@@ -79,7 +79,7 @@ public function testNumberOfCommentsRdfaMarkup() {
     $parser = new \EasyRdf_Parser_Rdfa();
     $graph = new \EasyRdf_Graph();
     $parser->parse($graph, $this->drupalGet('node/' . $this->node->nid), 'rdfa', $this->base_uri);
-    $this->assertTrue($graph->hasProperty($this->node_uri, 'http://rdfs.org/sioc/ns#num_replies', $expected_value), 'Number of comments found in RDF output of full node view mode (sioc:num_replies).');;
+    $this->assertTrue($graph->hasProperty($this->node_uri, 'http://rdfs.org/sioc/ns#num_replies', $expected_value), 'Number of comments found in RDF output of full node view mode (sioc:num_replies).');
   }
 
   /**
diff --git a/core/modules/views/views.module b/core/modules/views/views.module
index 09d8c6e..f78ee1e 100644
--- a/core/modules/views/views.module
+++ b/core/modules/views/views.module
@@ -900,7 +900,7 @@ function views_get_handler($item, $type, $override = NULL) {
   $field = $item['field'];
   $optional = isset($item['optional']) ? $item['optional'] : FALSE;
   // Get the plugin manager for this type.
-  $manager = Views::pluginManager($type);;
+  $manager = Views::pluginManager($type);
   $data = Views::viewsData()->get($table);
 
   if (isset($data[$field][$type])) {
