Fix and refactor typos

This commit is contained in:
Cathrine Paulsen 2022-03-10 14:10:21 +01:00 committed by Bjørn Erik Pedersen
parent 31fbc081c9
commit 61cf3c9f63
3 changed files with 15 additions and 15 deletions

View file

@ -283,10 +283,10 @@ func (b *contentBuilder) applyArcheType(contentFilename, archetypeFilename strin
defer f.Close()
if archetypeFilename == "" {
return b.cf.AppplyArchetypeTemplate(f, p, b.kind, DefaultArchetypeTemplateTemplate)
return b.cf.ApplyArchetypeTemplate(f, p, b.kind, DefaultArchetypeTemplateTemplate)
}
return b.cf.AppplyArchetypeFilename(f, p, b.kind, archetypeFilename)
return b.cf.ApplyArchetypeFilename(f, p, b.kind, archetypeFilename)
}