From 6a2e20a28985beb27755d440796583dee73186c7 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Mon, 14 Jan 2019 14:40:00 -0800 Subject: [PATCH] Rename `projName` to `projectName` in apitype.Stack This value was never used before, but it had a shorter name. In other API Types we are using `projectName` which we all prefer. Since we are going to start using this value going forward, let's adopt the good name now when it won't break anyone. --- pkg/apitype/core.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apitype/core.go b/pkg/apitype/core.go index 3340b9207..6ceff31c2 100644 --- a/pkg/apitype/core.go +++ b/pkg/apitype/core.go @@ -261,7 +261,7 @@ type Stack struct { OrgName string `json:"orgName"` RepoName string `json:"repoName"` - ProjectName string `json:"projName"` + ProjectName string `json:"projectName"` StackName tokens.QName `json:"stackName"` ActiveUpdate string `json:"activeUpdate"`