From 2227e91476e01133b8c93159ec8d2311b87cf4df Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Mon, 18 Sep 2023 16:48:11 -0700 Subject: [PATCH] all: Clean up Go doc comments --- cmd/hvm/clean.go | 1 + cmd/hvm/cmd_test.go | 1 + cmd/hvm/config.go | 1 + cmd/hvm/disable.go | 1 + cmd/hvm/install.go | 1 + cmd/hvm/remove.go | 1 + cmd/hvm/reset.go | 1 + cmd/hvm/status.go | 1 + cmd/hvm/use.go | 1 + cmd/hvm/version.go | 1 + pkg/archive/archive_test.go | 1 + pkg/archive/extract_targz.go | 1 + pkg/archive/extract_zip.go | 1 + pkg/helpers/helpers_test.go | 1 + 14 files changed, 14 insertions(+) diff --git a/cmd/hvm/clean.go b/cmd/hvm/clean.go index d79277a..4dd40cc 100644 --- a/cmd/hvm/clean.go +++ b/cmd/hvm/clean.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/cmd_test.go b/cmd/hvm/cmd_test.go index b895573..19a8f41 100644 --- a/cmd/hvm/cmd_test.go +++ b/cmd/hvm/cmd_test.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/config.go b/cmd/hvm/config.go index 5dcc32d..82a24e3 100644 --- a/cmd/hvm/config.go +++ b/cmd/hvm/config.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/disable.go b/cmd/hvm/disable.go index 4fcf4a1..48703f3 100644 --- a/cmd/hvm/disable.go +++ b/cmd/hvm/disable.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/install.go b/cmd/hvm/install.go index 2441823..a459732 100644 --- a/cmd/hvm/install.go +++ b/cmd/hvm/install.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/remove.go b/cmd/hvm/remove.go index 01e9186..964fb14 100644 --- a/cmd/hvm/remove.go +++ b/cmd/hvm/remove.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/reset.go b/cmd/hvm/reset.go index 85d6dfd..aef4964 100644 --- a/cmd/hvm/reset.go +++ b/cmd/hvm/reset.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/status.go b/cmd/hvm/status.go index bd27ce0..312082e 100644 --- a/cmd/hvm/status.go +++ b/cmd/hvm/status.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/use.go b/cmd/hvm/use.go index 31d5b4a..34becfe 100644 --- a/cmd/hvm/use.go +++ b/cmd/hvm/use.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/cmd/hvm/version.go b/cmd/hvm/version.go index 21e85d5..5ac32f2 100644 --- a/cmd/hvm/version.go +++ b/cmd/hvm/version.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package cmd import ( diff --git a/pkg/archive/archive_test.go b/pkg/archive/archive_test.go index 917973e..2c06435 100644 --- a/pkg/archive/archive_test.go +++ b/pkg/archive/archive_test.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package archive import ( diff --git a/pkg/archive/extract_targz.go b/pkg/archive/extract_targz.go index fd511f1..ef930c2 100644 --- a/pkg/archive/extract_targz.go +++ b/pkg/archive/extract_targz.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package archive import ( diff --git a/pkg/archive/extract_zip.go b/pkg/archive/extract_zip.go index fbdbe04..32b81ae 100644 --- a/pkg/archive/extract_zip.go +++ b/pkg/archive/extract_zip.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package archive import ( diff --git a/pkg/helpers/helpers_test.go b/pkg/helpers/helpers_test.go index c511e3e..4de4c06 100644 --- a/pkg/helpers/helpers_test.go +++ b/pkg/helpers/helpers_test.go @@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ + package helpers import (