]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spanner-scheme.cc
Run `make grand-replace'.
[lilypond.git] / lily / spanner-scheme.cc
index 0dc62b3a51e041760350aeffe900f72accd65aca..097bdf0290b6cd2717f452535db67388b7451b07 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2007 Han-Wen Nienhuys <hanwen@lilypond.org>
+  (c) 2007--2008 Han-Wen Nienhuys <hanwen@lilypond.org>
   
 */
 
@@ -12,8 +12,8 @@
 
 LY_DEFINE (ly_spanner_bound, "ly:spanner-bound",
           2, 0, 0, (SCM slur, SCM dir),
-          "Get one of the bounds of @var{spanner}. @var{dir} is @code{-1} "
-          "for left, and @code{1} for right.")
+          "Get one of the bounds of @var{slur}.  @var{dir} is @code{-1}"
+          " for left, and @code{1} for right.")
 {
   LY_ASSERT_TYPE (unsmob_spanner, slur, 1);
   LY_ASSERT_TYPE (is_direction, dir,2);
@@ -38,7 +38,7 @@ LY_DEFINE (ly_spanner_broken_into, "ly:spanner-broken-into",
 
 LY_DEFINE (ly_spanner_p, "ly:spanner?",
           1, 0, 0, (SCM g),
-          "Is  @var{g} a spanner object?")
+          "Is @var{g} a spanner object?")
 {
   Grob *me = unsmob_grob (g);
   bool b = dynamic_cast<Spanner *> (me);