diff --git a/README.txt b/README.txt
index 3720747..2643ea5 100644
--- a/README.txt
+++ b/README.txt
@@ -13,9 +13,11 @@ Installation
 
 Usage
 -----
-Upon activating this module, an input filter chessboard should appear.
-Just include this filter and enjoy.  Refer to online help for syntax
-supported.
+The Chessboard module adds a chessboard diagram filter to your site, for use
+with text formats. This filter adds the ability to use chessboard diagrams in
+any text field that uses a text format (such as the body of a content item or
+the text of a comment).
+Help is available on your admin/help/chessboard page.
 
 Miscellaneous
 -------------
diff --git a/chessboard.module b/chessboard.module
index 6c563bb..0b9c74b 100644
--- a/chessboard.module
+++ b/chessboard.module
@@ -7,7 +7,10 @@ function chessboard_help($path, $arg) {
 
   switch ($path) {
     case 'admin/help#chessboard':
-      $output = t('Renders chessboard diagrams specified with the FEN syntax or a simple piece placement format.');
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('The Chessboard module adds a chessboard diagram filter to your site, for use with <a href="@filter">text formats</a> This filter adds the ability to use chessboard diagrams in any text field that uses a text format (such as the body of a content item or the text of a comment).', array('@filter' => url('admin/help/filter'))) . '</p>';
+      $output .= '<p>' . l(t('More information about text formats'), 'filter/tips') . '</p>';
       break;
 
     default:
