Fix another typo.

This commit is contained in:
Pat Gavlin 2020-01-23 10:42:38 -08:00
parent 60a5d06d37
commit 4d8027f057

View file

@ -165,9 +165,9 @@ func (pkg *pkgContext) plainType(t schema.Type, optional bool) string {
case schema.StringType:
typ = "string"
case schema.ArchiveType:
return "Archive"
return "pulumi.Archive"
case schema.AssetType:
return "AssetOrArchive"
return "pulumi.AssetOrArchive"
case schema.AnyType:
return "interface{}"
}