From 697fc4dd0f993b022ceb725a134d3b1d8f669477 Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Tue, 13 Jan 2015 11:50:11 -0500 Subject: [PATCH] Fix typo in comments --- include/ProjectVersion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ProjectVersion.h b/include/ProjectVersion.h index c41d2ae08..d181ba49a 100644 --- a/include/ProjectVersion.h +++ b/include/ProjectVersion.h @@ -102,7 +102,7 @@ inline int compare(ProjectVersion v1, QString v2) /* - * ProjectVersion v. char[] + * ProjectVersion v. QString */ inline bool operator<(ProjectVersion v1, QString v2) { return compare(v1, v2) < 0; } inline bool operator>(ProjectVersion v1, QString v2) { return compare(v1, v2) > 0; }