From 168792b9c6d7da724967151e55cf8f5d7a5be8f3 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sun, 13 Apr 2025 23:10:51 -0400 Subject: [PATCH] Fix comment typo --- src/project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.cpp b/src/project.cpp index 1b165df2..9ce9f6ed 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -154,7 +154,7 @@ int Project::getSupportedMajorVersion(QString *errorOut) { // We now know which base repo that the user's repo shares history with. // Next we check to see if it contains the changes required to support particular major versions of Porymap. - // We'll start with the most recent latest version and work backwards. + // We'll start with the most recent major version and work backwards. for (const auto &pair : historyMap.value(rootCommit)) { int versionNum = pair.first; QString commitHash = pair.second;