From c39c4356493218fbc19696206470239099e847a0 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 10 Sep 2011 21:26:05 -0400 Subject: [PATCH] Comment fix. --- src/NoteData.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NoteData.h b/src/NoteData.h index df8d6a5856..6a7b4bf1d0 100644 --- a/src/NoteData.h +++ b/src/NoteData.h @@ -99,28 +99,28 @@ private: bool IsPlayer1(const int track, const TapNote &tn) const; /** - * @brief Determine if the note in questino should be counted as a tap. + * @brief Determine if the note in question should be counted as a tap. * @param tn the note in question. * @param row the row it lives in. * @return true if it's a tap, false otherwise. */ bool IsTap(const TapNote &tn, const int row) const; /** - * @brief Determine if the note in questino should be counted as a mine. + * @brief Determine if the note in question should be counted as a mine. * @param tn the note in question. * @param row the row it lives in. * @return true if it's a mine, false otherwise. */ bool IsMine(const TapNote &tn, const int row) const; /** - * @brief Determine if the note in questino should be counted as a lift. + * @brief Determine if the note in question should be counted as a lift. * @param tn the note in question. * @param row the row it lives in. * @return true if it's a lift, false otherwise. */ bool IsLift(const TapNote &tn, const int row) const; /** - * @brief Determine if the note in questino should be counted as a fake. + * @brief Determine if the note in question should be counted as a fake. * @param tn the note in question. * @param row the row it lives in. * @return true if it's a fake, false otherwise. */