Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/framework/provider/functions/manifest_decode.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (f ManifestDecodeFunction) Run(ctx context.Context, req function.RunRequest
resp.Error = function.NewFuncError("Invalid manifest: YAML document is empty")
return
} else if len(elems) > 1 {
resp.Error = function.NewFuncError("YAML manifest contains multiple resources: use decode_manifest_multi to decode manifests containing more than one resource")
resp.Error = function.NewFuncError("YAML manifest contains multiple resources: use manifest_decode_multi to decode manifests containing more than one resource")
return
}

Expand Down