Did the same thing to interfaces

This commit is contained in:
2022-08-24 18:57:07 -04:00
parent 715766edb4
commit c470997887
3 changed files with 3 additions and 5 deletions

View File

@@ -367,7 +367,7 @@ func (section *FaceSection) ToString (indent int) (output string) {
"face ",
section.permission.ToString(), " ",
section.name, ":",
section.inherits, "\n")
section.inherits.ToString(), "\n")
for _, name := range sortMapKeysAlphabetically(section.behaviors) {
behavior := section.behaviors[name]