Removed the last traces of the word "initialization"

This commit is contained in:
2022-09-13 11:12:38 -04:00
parent 5384dff15b
commit 21ea27791d
6 changed files with 7 additions and 7 deletions

View File

@@ -216,7 +216,7 @@ func (parser *ParsingOperation) parseBlockLevelPhrase (
// if this is a set phrase, parse initialization values under it
if phrase.kind == PhraseKindAssign {
var values Argument
values, err = parser.parseInitializationValues(indent)
values, err = parser.parseDefaultValues(indent)
if values.kind != ArgumentKindNil {
phrase.arguments = append(phrase.arguments, values)