Skip to content

Commit

Permalink
MiniScript: some more WIIIIP on pretty printing variables
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasdr committed Oct 16, 2023
1 parent f109e8a commit 2195625
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tdme/utilities/MiniScript.h
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ class tdme::utilities::MiniScript {
auto i = 0;
for (const auto& valueString: values) {
result+= valueString;
if (i != values.size() - 1) result+= ",";
if (i != values.size() - 1) result+= ", ";
i++;
}
result = "[" + result + "]";
Expand Down Expand Up @@ -1928,7 +1928,7 @@ class tdme::utilities::MiniScript {
auto i = 0;
for (const auto& valueString: values) {
result+= valueString;
if (i != values.size() - 1) result+= ",";
if (i != values.size() - 1) result+= ", ";
i++;
}
result = "{" + result + "}";
Expand Down Expand Up @@ -1959,7 +1959,7 @@ class tdme::utilities::MiniScript {
auto i = 0;
for (const auto& valueString: values) {
result+= valueString;
if (i != values.size() - 1) result+= ",";
if (i != values.size() - 1) result+= ", ";
i++;
}
result = "{" + result + "}";
Expand Down

0 comments on commit 2195625

Please sign in to comment.