From 17fb2ace910e2c5ee44cb7418a760b108fb613c6 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 20 Jan 2021 14:49:32 -0500 Subject: [PATCH] chore: fix docblock --- plugins/buildpacks/report.go | 2 +- plugins/network/report.go | 2 +- plugins/proxy/report.go | 2 +- plugins/resource/resource.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/buildpacks/report.go b/plugins/buildpacks/report.go index e67bdd72b..ca53623c2 100644 --- a/plugins/buildpacks/report.go +++ b/plugins/buildpacks/report.go @@ -6,7 +6,7 @@ import ( "github.com/dokku/dokku/plugins/common" ) -// ReportSingleApp is an internal function that displays the app report for one or more apps +// ReportSingleApp is an internal function that displays the buildpacks report for one or more apps func ReportSingleApp(appName, infoFlag string) error { if err := common.VerifyAppName(appName); err != nil { return err diff --git a/plugins/network/report.go b/plugins/network/report.go index a1cc197b4..bfdca4095 100644 --- a/plugins/network/report.go +++ b/plugins/network/report.go @@ -6,7 +6,7 @@ import ( "github.com/dokku/dokku/plugins/common" ) -// ReportSingleApp is an internal function that displays the app report for one or more apps +// ReportSingleApp is an internal function that displays the network report for one or more apps func ReportSingleApp(appName, infoFlag string) error { if err := common.VerifyAppName(appName); err != nil { return err diff --git a/plugins/proxy/report.go b/plugins/proxy/report.go index 01f181307..5735dee1d 100644 --- a/plugins/proxy/report.go +++ b/plugins/proxy/report.go @@ -6,7 +6,7 @@ import ( "github.com/dokku/dokku/plugins/common" ) -// ReportSingleApp is an internal function that displays the app report for one or more apps +// ReportSingleApp is an internal function that displays the proxy report for one or more apps func ReportSingleApp(appName string, infoFlag string) error { if err := common.VerifyAppName(appName); err != nil { return err diff --git a/plugins/resource/resource.go b/plugins/resource/resource.go index 7f09e973f..b579faa2b 100644 --- a/plugins/resource/resource.go +++ b/plugins/resource/resource.go @@ -17,7 +17,7 @@ type Resource struct { NvidiaGPU string `json:"nvidia-gpu"` } -// ReportSingleApp is an internal function that displays the app report for one or more apps +// ReportSingleApp is an internal function that displays the resource report for one or more apps func ReportSingleApp(appName, infoFlag string) error { if err := common.VerifyAppName(appName); err != nil { return err