Skip to content
Snippets Groups Projects
Commit 8fe23eb6 authored by Jonas Leder's avatar Jonas Leder
Browse files

add missing ","

parent da710ec2
Branches
Tags
1 merge request!1Jonasled master patch 92385
Pipeline #8468 passed
using System.Text.RegularExpressions;
using System.Text.RegularExpressions;
using Newtonsoft.Json.Linq;
const int indentSpaceCount = 2;
......@@ -41,7 +41,7 @@ string ParseJsonObject(JObject json, int indent = 1)
string key = token.Name;
var value = token.Value;
apiDocs += "@OA\\Property(\n property=\"" + key + "\"\n" + parseValue(value) + "),\n";
apiDocs += "@OA\\Property(\n property=\"" + key + "\",\n" + parseValue(value) + "),\n";
}
return IndentString(apiDocs, indent);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment