Skip to content

Commit

Permalink
Correction configuration exemple
Browse files Browse the repository at this point in the history
  • Loading branch information
gideruette committed Dec 13, 2023
1 parent 095d70e commit 50073af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TopModel.ModelGenerator/TmdWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private void WriteClass(TmdClass classe)
var isFirst = true;
foreach (var property in classe.Properties)
{
if (isFirst)
if (!isFirst)
{
_writer.WriteLine();
}
Expand Down Expand Up @@ -152,7 +152,7 @@ private void WriteEndpoint(TmdEndpoint endpoint)
var isFirst = true;
foreach (var property in endpoint.Params)
{
if (isFirst)
if (!isFirst)
{
_writer.WriteLine();
}
Expand Down
File renamed without changes.

0 comments on commit 50073af

Please sign in to comment.