diff --git a/ajax_comments.module b/ajax_comments.module
index 4fb6f55..b3dd1ec 100644
--- a/ajax_comments.module
+++ b/ajax_comments.module
@@ -26,11 +26,18 @@ use Drupal\Core\Routing\RouteMatchInterface;
 /**
  * Implements hook_help().
  */
- function ajax_comments_help($route_name, RouteMatchInterface $route_match) {
+function ajax_comments_help($route_name, RouteMatchInterface $route_match) {
+  $output = '';
+
   switch ($route_name) {
     case 'help.page.ajax_comments':
       $output .= '<h3>' . t('About') . '</h3>';
-      $output .= '<p>' . t('Provides ajax comments to Drupal sites (commenting like a social networking sites: Facebook, Google+, vk.com etc).') . '</p>';
+      $output .= '<p>' . t('The Ajax Comment module enhances the commenting experience on Drupal sites, offering functionality similar to social networking sites such as Facebook, Google+, vk.com, etc.') . '<br>';
+      $output .= t('By providing AJAX submits, users can submit comments without the need for page refresh. The Ajax Comment module allows threaded replies, enabling users to engage in interactive discussions directly on the thread page. With AJAX comment deletion, users can easily remove their comments without reloading the entire page. The module also supports CAPTCHA, ensuring that comments are protected against spam and unwanted submissions.') . '</p>';
+
+      $output .= '<h3>' . t('Usage') . '</h3>';
+      $output .= '<p>' . t('The Ajax Comment module is easy to use and requires a simple download and enable process.') . '<br>';
+      $output .= t('By enabling this module, Drupal site owners can provide their users with a modern and user-friendly commenting system that promotes engagement, interactivity, and real-time conversations.') . '</p>';
       return $output;
   }
 }