From 7a8d3d5b62cc808885c4ddc846380595922fac16 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 16 Dec 2020 17:49:02 +0100 Subject: [PATCH] Improve documentation --- abstracttrack.h | 2 +- id3/id3v2tag.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/abstracttrack.h b/abstracttrack.h index d1e1e6f..724100f 100644 --- a/abstracttrack.h +++ b/abstracttrack.h @@ -22,7 +22,7 @@ class WaveAudioStream; class Mp4Track; /*! - * \brief Specifies the track type. + * \brief The TrackType enum specifies the underlying file type of a track and the concrete class of the track object. */ enum class TrackType { Unspecified, /**< The track type is not specified. */ diff --git a/id3/id3v2tag.cpp b/id3/id3v2tag.cpp index 4e13e0f..586642b 100644 --- a/id3/id3v2tag.cpp +++ b/id3/id3v2tag.cpp @@ -89,7 +89,7 @@ std::vector Id3v2Tag::internallyGetValues(const IdentifierType /*! * \brief Uses default implementation for non-text frames and applies special handling to text frames. * - * - Ensure text frames are unique + * - Ensure text frames are unique. * - Allow to store multiple values inside the same text frame. */ bool Id3v2Tag::internallySetValues(const IdentifierType &id, const std::vector &values)