Renamed returnsTo to returnees

This commit is contained in:
2022-09-05 11:49:19 -04:00
parent d8c0ce8d28
commit ef9d518032
5 changed files with 12 additions and 37 deletions

View File

@@ -421,9 +421,9 @@ func (phrase Phrase) ToString (indent int, ownLine bool) (output string) {
}
output += "]"
if len(phrase.returnsTo) > 0 {
if len(phrase.returnees) > 0 {
output += " ->"
for _, returnItem := range phrase.returnsTo {
for _, returnItem := range phrase.returnees {
output += " " + returnItem.ToString(0, false)
}
}