diff --git a/core/modules/content_moderation/content_moderation.module b/core/modules/content_moderation/content_moderation.module
index 07ef7c0..82cce57 100644
--- a/core/modules/content_moderation/content_moderation.module
+++ b/core/modules/content_moderation/content_moderation.module
@@ -36,10 +36,12 @@ function content_moderation_help($route_name, RouteMatchInterface $route_match)
       $output .= '<p>' . t('The Content Moderation module provides moderation for content by applying workflows to content. For more information, see the <a href=":content_moderation">online documentation for the Content Moderation module</a>.', [':content_moderation' => 'https://www.drupal.org/documentation/modules/content_moderation']) . '</p>';
       $output .= '<h3>' . t('Uses') . '</h3>';
       $output .= '<dl>';
-      $output .= '<dt>' . t('Configuring workflows') . '</dt>';
-      $output .= '<dd>' . t('Enable the Workflow UI module to create, edit and delete content moderation workflows.') . '</p>';
+      $output .= '<dt>' . t('Moderation states') . '</dt>';
+      $output .= '<dd>' . t('Moderation <a href =":states">states</a> provide the <em>Draft</em> and <em>Archived</em> states as additions to the basic <em>Published</em> option. You can click the blue <em>Add Moderation state</em> button and create new states.', array(':states' => \Drupal::url('entity.moderation_state.collection'))) . '</dd>';
+      $output .= '<dt>' . t('Moderation state transitions') . '</dt>';
+      $output .= '<dd>' . t('Using the <a href=":transitions">"Moderation state transitions"</a> screen, you can create the actual workflow. You decide the direction in which content moves from state to state, and which user roles are allowed to make that move.', array(':transitions' => \Drupal::url('entity.moderation_state_transition.collection'))) . '</dd>';
       $output .= '<dt>' . t('Configure Content Moderation permissions') . '</dt>';
-      $output .= '<dd>' . t('Each transition is exposed as a permission. If a user has the permission for a transition, then they can move that node from the start state to the end state') . '</p>';
+      $output .= '<dd>' . t('Each state is exposed as a <a href=":permissions">permissions</a>. If a user has the permission for a transition, then they can move that node from the start state to the end state', array(':permissions' => \Drupal::url('user.admin_permissions'))) . '</p>';
       $output .= '</dl>';
       return $output;
   }
