diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php
index 498c84e7442659915925c6dcfd06e4903667f2d0..fda2798d38e92d0bc50e2ff70b1622a80ea9f37c 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php
@@ -106,7 +106,7 @@ public function testDeterminingChanges() {
    * @see block_test_block_insert()
    */
   public function testCustomBlockSaveOnInsert() {
-    // custom_block_test_custom_block_insert() tiggers a save on insert if the
+    // custom_block_test_custom_block_insert() triggers a save on insert if the
     // title equals 'new'.
     $block = $this->createCustomBlock('new');
     $this->assertEqual($block->label(), 'CustomBlock ' . $block->id(), 'Custom block saved on block insert.');
diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php
index a3f16f869999a0ad4634c655f96bf76fd369f21a..4f50fd307c04b0389142238b627925ec06b23cd6 100644
--- a/core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php
+++ b/core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php
@@ -169,7 +169,7 @@ function testDeterminingChanges() {
    * @see node_test_node_insert()
    */
   function testNodeSaveOnInsert() {
-    // node_test_node_insert() tiggers a save on insert if the title equals
+    // node_test_node_insert() triggers a save on insert if the title equals
     // 'new'.
     $node = $this->drupalCreateNode(array('title' => 'new'));
     $this->assertEqual($node->getTitle(), 'Node ' . $node->id(), 'Node saved on node insert.');