diff --git a/core/modules/node/templates/node.html.twig b/core/modules/node/templates/node.html.twig
index e7e353dfc318f02b0e29055500fd6d2ec91f08a3..c7ada1e54f644ac2a068ef57640e2f53f1d6abfc 100644
--- a/core/modules/node/templates/node.html.twig
+++ b/core/modules/node/templates/node.html.twig
@@ -5,9 +5,16 @@
*
* Available variables:
* - node: The node entity with limited access to object properties and methods.
- Only "getter" methods (method names starting with "get", "has", or "is")
- and a few common methods such as "id" and "label" are available. Calling
- other methods (such as node.delete) will result in an exception.
+ * Only method names starting with "get", "has", or "is" and a few common
+ * methods such as "id", "label", and "bundle" are available. For example:
+ * - node.getCreatedTime() will return the node creation timestamp.
+ * - node.hasField('field_example') returns TRUE if the node bundle includes
+ * field_example. (This does not indicate the presence of a value in this
+ * field.)
+ * - node.isPublished() will return whether the node is published or not.
+ * Calling other methods, such as node.delete(), will result in an exception.
+ * See \Drupal\node\Entity\Node for a full list of public properties and
+ * methods for the node object.
* - label: The title of the node.
* - content: All node items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
diff --git a/core/themes/bartik/templates/node.html.twig b/core/themes/bartik/templates/node.html.twig
index 5d509aa558128b5578ae20e244cda525fa191ed3..b257ad3cb6602aa18acb4120707dc225eeec5a49 100644
--- a/core/themes/bartik/templates/node.html.twig
+++ b/core/themes/bartik/templates/node.html.twig
@@ -5,9 +5,16 @@
*
* Available variables:
* - node: The node entity with limited access to object properties and methods.
- Only "getter" methods (method names starting with "get", "has", or "is")
- and a few common methods such as "id" and "label" are available. Calling
- other methods (such as node.delete) will result in an exception.
+ * Only method names starting with "get", "has", or "is" and a few common
+ * methods such as "id", "label", and "bundle" are available. For example:
+ * - node.getCreatedTime() will return the node creation timestamp.
+ * - node.hasField('field_example') returns TRUE if the node bundle includes
+ * field_example. (This does not indicate the presence of a value in this
+ * field.)
+ * - node.isPublished() will return whether the node is published or not.
+ * Calling other methods, such as node.delete(), will result in an exception.
+ * See \Drupal\node\Entity\Node for a full list of public properties and
+ * methods for the node object.
* - label: The title of the node.
* - content: All node items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
diff --git a/core/themes/classy/templates/content/node.html.twig b/core/themes/classy/templates/content/node.html.twig
index 5af7c25fa39dd9a56ec1bcee9140937b492cfbb7..7f99e796f62825615b8787821e2e83151902639b 100644
--- a/core/themes/classy/templates/content/node.html.twig
+++ b/core/themes/classy/templates/content/node.html.twig
@@ -5,9 +5,16 @@
*
* Available variables:
* - node: The node entity with limited access to object properties and methods.
- Only "getter" methods (method names starting with "get", "has", or "is")
- and a few common methods such as "id" and "label" are available. Calling
- other methods (such as node.delete) will result in an exception.
+ * Only method names starting with "get", "has", or "is" and a few common
+ * methods such as "id", "label", and "bundle" are available. For example:
+ * - node.getCreatedTime() will return the node creation timestamp.
+ * - node.hasField('field_example') returns TRUE if the node bundle includes
+ * field_example. (This does not indicate the presence of a value in this
+ * field.)
+ * - node.isPublished() will return whether the node is published or not.
+ * Calling other methods, such as node.delete(), will result in an exception.
+ * See \Drupal\node\Entity\Node for a full list of public properties and
+ * methods for the node object.
* - label: The title of the node.
* - content: All node items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use
diff --git a/core/themes/stable/templates/content/node.html.twig b/core/themes/stable/templates/content/node.html.twig
index 68a92ea614a144a70a96dbd8fa9e328826708345..e9dcd0bc1c1d8de7a944865c4ef7f638e68b321c 100644
--- a/core/themes/stable/templates/content/node.html.twig
+++ b/core/themes/stable/templates/content/node.html.twig
@@ -5,9 +5,16 @@
*
* Available variables:
* - node: The node entity with limited access to object properties and methods.
- Only "getter" methods (method names starting with "get", "has", or "is")
- and a few common methods such as "id" and "label" are available. Calling
- other methods (such as node.delete) will result in an exception.
+ * Only method names starting with "get", "has", or "is" and a few common
+ * methods such as "id", "label", and "bundle" are available. For example:
+ * - node.getCreatedTime() will return the node creation timestamp.
+ * - node.hasField('field_example') returns TRUE if the node bundle includes
+ * field_example. (This does not indicate the presence of a value in this
+ * field.)
+ * - node.isPublished() will return whether the node is published or not.
+ * Calling other methods, such as node.delete(), will result in an exception.
+ * See \Drupal\node\Entity\Node for a full list of public properties and
+ * methods for the node object.
* - label: The title of the node.
* - content: All node items. Use {{ content }} to print them all,
* or print a subset such as {{ content.field_example }}. Use