From 8453b58ae3dadd21d34526dd16c5c6c57c146321 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 3 Apr 2015 10:26:53 -0400 Subject: [PATCH] queue: Fix punction on _sort_order documentation comment Signed-off-by: Anna Schumaker --- include/core/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/core/queue.h b/include/core/queue.h index 8131dbb2..a55fb063 100644 --- a/include/core/queue.h +++ b/include/core/queue.h @@ -60,7 +60,7 @@ struct sort_info { class Queue { protected: std :: vector _tracks; /**< List of tracks in this queue. */ - std :: vector _sort_order; /**< Current sort settings */ + std :: vector _sort_order; /**< Current sort settings. */ unsigned int _cur; /**< The index of the last track played. */ unsigned int _flags; /**< Mask of queue_flags. */ unsigned int _length; /**< Total runtime of the queue. */