From f1ccccf227258853a0773a1a4a519b8f65bcee43 Mon Sep 17 00:00:00 2001 From: "Zachary J. Rollyson" Date: Thu, 12 Dec 2024 15:42:22 -0500 Subject: [PATCH] style: short CloudI shoulda been `i` --- runner/cf-executor/cg/cg.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/cf-executor/cg/cg.go b/runner/cf-executor/cg/cg.go index 6c7492b..082436d 100644 --- a/runner/cf-executor/cg/cg.go +++ b/runner/cf-executor/cg/cg.go @@ -40,11 +40,11 @@ type CG struct { const apiRootURLDefault = "https://api.fr.cloud.gov" -func New(a CloudI, o *Opts) (*CG, error) { +func New(i CloudI, o *Opts) (*CG, error) { if o == nil { o = &Opts{CredI: EnvCredsGetter{}} } - cg := &CG{a, o} + cg := &CG{i, o} return cg.Connect() }