diff --git a/core/modules/workflows/workflows.info.yml b/core/modules/workflows/workflows.info.yml
index 0089a12..3d43f14 100644
--- a/core/modules/workflows/workflows.info.yml
+++ b/core/modules/workflows/workflows.info.yml
@@ -1,6 +1,6 @@
 name: 'Workflows'
 type: module
-description: 'Provides UI and API for managing workflows. This module can be used with the Content moderation module to add highly customisable workflows to content.'
+description: 'Workflow module allows you to create multi-state process to review before content to be published.'
 version: VERSION
 core: 8.x
 package: Core (Experimental)
diff --git a/core/modules/workflows/workflows.module b/core/modules/workflows/workflows.module
index 26f72b4..2222df1 100644
--- a/core/modules/workflows/workflows.module
+++ b/core/modules/workflows/workflows.module
@@ -27,7 +27,13 @@ function workflows_help($route_name, RouteMatchInterface $route_match) {
     case 'help.page.workflows':
       $output = '';
       $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('The Workflows module provides a UI and an API for creating workflows content. This lets site admins define workflows and their states, and then define transitions between those states. For more information, see the <a href=":workflow">online documentation for the Workflows module</a>.', [':workflow' => 'https://www.drupal.org/documentation/modules/workflows']) . '</p>';
+      $output .= '<p>' . t('The Workflows module provides an UI and an API for creating multi-state process per user role to check what user is posting before publishing the content. For more information, see the <a href=":workflow">online documentation for the Workflows module</a>.', [':workflow' => 'https://www.drupal.org/documentation/modules/workflows']) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('Allows you to manage workflow with states and transitions.') . '</dt>';
+      $output .= '<dt>' . t('For example - a digital newspaper in which the editors make their articles, but they have to pass before by a supervisor to be published.') . '</dt>';
+      $output .= '</dl>';
+
       return $output;
   }
 }
