Fix unintentional wordwrap of ExecutionCommand arguments markdown

This commit is contained in:
agnostic-apollo
2021-03-25 10:11:43 +05:00
parent 977cb34fc7
commit 0230698494

View File

@@ -446,7 +446,7 @@ public class ExecutionCommand {
argumentsString.append(MarkdownUtils.getMultiLineMarkdownStringEntry("Arg " + (i + 1), argumentsArray[i], "-")).append("\n");
}
} else{
argumentsString.append(" -");
argumentsString.append(" - ");
}
return argumentsString.toString();