]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tab-staff-symbol-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / tab-staff-symbol-engraver.cc
index 03ba28679c65fc5c50b7b0e8e9ae6748d2f5f992..ad700a3ef36f1b2b00e72f0a82825534935daa04 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2005--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "engraver.hh"
@@ -14,7 +14,7 @@ class Tab_staff_symbol_engraver : public Engraver
 public:
   TRANSLATOR_DECLARATIONS (Tab_staff_symbol_engraver);
 protected:
-  DECLARE_ACKNOWLEDGER(staff_symbol);
+  DECLARE_ACKNOWLEDGER (staff_symbol);
 };
 
 void
@@ -34,9 +34,15 @@ Tab_staff_symbol_engraver::Tab_staff_symbol_engraver ()
 ADD_ACKNOWLEDGER (Tab_staff_symbol_engraver, staff_symbol);
 ADD_TRANSLATOR (Tab_staff_symbol_engraver,
                /* doc */
-               "Create a staff-symbol, but look at "
-               "stringTunings for the number of lines. "
-               ,
-               /* create */ "StaffSymbol",
-               /* read */ "stringTunings",
-               /* write */ "");
+               "Create a tablature staff symbol, but look at"
+               " @code{stringTunings} for the number of lines.",
+
+               /* create */
+               "StaffSymbol ",
+
+               /* read */
+               "stringTunings ",
+
+               /* write */
+               ""
+               );