Merged master

This commit is contained in:
github-actions[bot] 2023-11-09 11:19:25 +00:00 committed by GitHub
commit c1622a2dec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ string AppendNewEntry(string input, string versionNumber)
// Insert the comma and new entry into the "defines" HashSet
input = input.Remove(definesEndIndex - 2, 2); // Remove the trailing "};"
input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}};");
input = input.Insert(definesEndIndex - 2, $",\n{newEntry}\n{indentation}}};");
return input;
}