diff --git a/core/lib/Drupal/Core/Ajax/AfterCommand.php b/core/lib/Drupal/Core/Ajax/AfterCommand.php
index 41e232d20ebeb7f234044249efc60c7d3665f3f6..0b981177bd610d785d89703cbd173649843eba1b 100644
--- a/core/lib/Drupal/Core/Ajax/AfterCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AfterCommand.php
@@ -6,8 +6,8 @@
  * An AJAX command for calling the jQuery after() method.
  *
  * The 'insert/after' command instructs the client to use jQuery's after()
- * method to insert the given HTML content after each element matched by the
- * given selector.
+ * method to insert the given render array or HTML content after each element
+ * matched by the given selector.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/AppendCommand.php b/core/lib/Drupal/Core/Ajax/AppendCommand.php
index 34c751d7ee6f176162b9390dda5e40be766c4b2a..ae1c2ea80a17c1d940a5e358b8795ed3f3aaead5 100644
--- a/core/lib/Drupal/Core/Ajax/AppendCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AppendCommand.php
@@ -6,8 +6,8 @@
  * An AJAX command for calling the jQuery append() method.
  *
  * The 'insert/append' command instructs the client to use jQuery's append()
- * method to append the given HTML content to the inside of each element matched
- * by the given selector.
+ * method to append the given render array or HTML content to the inside of each
+ * element matched by the given selector.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/BeforeCommand.php b/core/lib/Drupal/Core/Ajax/BeforeCommand.php
index 8de47c8e64eb4051054cab9395fe8c2ea37e40e5..f78abb31d35bf9ae398cfdba4fbc498d75ae44a2 100644
--- a/core/lib/Drupal/Core/Ajax/BeforeCommand.php
+++ b/core/lib/Drupal/Core/Ajax/BeforeCommand.php
@@ -6,8 +6,8 @@
  * An AJAX command for calling the jQuery before() method.
  *
  * The 'insert/before' command instructs the client to use jQuery's before()
- * method to insert the given HTML content before each of elements matched by
- * the given selector.
+ * method to insert the given render array or HTML content before each of
+ * elements matched by the given selector.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/HtmlCommand.php b/core/lib/Drupal/Core/Ajax/HtmlCommand.php
index e39f08f59f739db7fb9b55c696d1cca42bc28e9f..ce19c77e1e682c8d2e30e90e02cca7190c9aa96e 100644
--- a/core/lib/Drupal/Core/Ajax/HtmlCommand.php
+++ b/core/lib/Drupal/Core/Ajax/HtmlCommand.php
@@ -7,7 +7,7 @@
  *
  * The 'insert/html' command instructs the client to use jQuery's html() method
  * to set the HTML content of each element matched by the given selector while
- * leaving the outer tags intact.
+ * leaving the outer tags intact using a given render array or HTML markup.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/InsertCommand.php b/core/lib/Drupal/Core/Ajax/InsertCommand.php
index 1813e500645b2abd797d994b9955a581a2ae20e1..65479c3fb4dc5e6e3a1f7bb00ae04fa42c06d156 100644
--- a/core/lib/Drupal/Core/Ajax/InsertCommand.php
+++ b/core/lib/Drupal/Core/Ajax/InsertCommand.php
@@ -5,9 +5,9 @@
 /**
  * Generic AJAX command for inserting content.
  *
- * This command instructs the client to insert the given HTML using whichever
- * jQuery DOM manipulation method has been specified in the #ajax['method']
- * variable of the element that triggered the request.
+ * This command instructs the client to insert the given render array or HTML
+ * using whichever jQuery DOM manipulation method has been specified in the
+ * #ajax['method'] variable of the element that triggered the request.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/PrependCommand.php b/core/lib/Drupal/Core/Ajax/PrependCommand.php
index e3902b8f44f7a12c52baa64a5059a7a52a62bd78..7cca085a2c0b6a66d5046fedeebd54febb2476b6 100644
--- a/core/lib/Drupal/Core/Ajax/PrependCommand.php
+++ b/core/lib/Drupal/Core/Ajax/PrependCommand.php
@@ -6,8 +6,8 @@
  * AJAX command for calling the jQuery insert() method.
  *
  * The 'insert/prepend' command instructs the client to use jQuery's prepend()
- * method to prepend the given HTML content to the inside each element matched
- * by the given selector.
+ * method to prepend the given render array or HTML content to the inside each
+ * element matched by the given selector.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.
diff --git a/core/lib/Drupal/Core/Ajax/ReplaceCommand.php b/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
index 25927b7993ba063f54c1e2ded6645c780a1ac824..9d7dcf26688b78e3373906487d39016ac3197e02 100644
--- a/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
+++ b/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
@@ -7,7 +7,7 @@
  *
  * The 'insert/replaceWith' command instructs the client to use jQuery's
  * replaceWith() method to replace each element matched by the given selector
- * with the given HTML.
+ * with the given render array or HTML.
  *
  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
  * defined in misc/ajax.js.