face-section #7

Merged
sashakoshka merged 12 commits from face-section into main 2022-08-24 04:57:15 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0b80a55f79 - Show all commits

View File

@ -378,11 +378,11 @@ func (behavior *FaceBehavior) ToString (indent int) (output string) {
output += doIndent(indent, behavior.name, "\n")
for _, inputItem := range behavior.inputs {
output += doIndent(indent, "> ", inputItem.ToString(), "\n")
output += doIndent(indent + 1, "> ", inputItem.ToString(), "\n")
}
for _, outputItem := range behavior.outputs {
output += doIndent(indent, "< ", outputItem.ToString(), "\n")
output += doIndent(indent + 1, "< ", outputItem.ToString(), "\n")
}
return