From 25ce296a969dfdc190c71c3d179c08fe025f429b Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 4 Mar 2011 22:05:44 -0500 Subject: [PATCH] Put comment in the right position. Try to only put @returns after @params. --- src/TimingData.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TimingData.h b/src/TimingData.h index 022116102e..7283a1c09f 100644 --- a/src/TimingData.h +++ b/src/TimingData.h @@ -216,9 +216,10 @@ struct TimeSignatureSegment TimeSignatureSegment() : m_iStartRow(-1), m_iNumerator(4), m_iDenominator(4) { } /** * @brief Creates a Time Signature Segment at the given row with a supplied numerator. + * + * The denominator will be 4 if this is called. * @param r the starting row of the segment. * @param n the numerator for the segment. - * This creates a TimeSignature with the specified row and numerator. The denominator will be 4. */ TimeSignatureSegment( int r, int n ) { m_iStartRow = max( 0, r );