Skip to content

Commit

Permalink
Add package GoDoc for some internal packages (revive)
Browse files Browse the repository at this point in the history
    internal/maint/maint.go:1:1: package-comments: should have a package comment (revive)
    package maint // import "gotest.tools/v3/internal/maint"
    internal/format/diff.go:1:1: package-comments: should have a package comment (revive)
    package format
    icmd/internal/stub/main.go:1:1: package-comments: should have a package comment (revive)
    package main

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Oct 4, 2022
1 parent b881b33 commit 79f783f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions icmd/internal/stub/main.go
@@ -1,3 +1,4 @@
// Package main produces a test-binary used in tests.
package main

import (
Expand Down
1 change: 1 addition & 0 deletions internal/format/diff.go
@@ -1,3 +1,4 @@
// Package format provides utilities for formatting diffs and messages.
package format

import (
Expand Down
2 changes: 2 additions & 0 deletions internal/maint/maint.go
@@ -1,3 +1,5 @@
// Package maint implements assert.TestingT for uses outside of test cases,
// for example, in a TestMain.
package maint // import "gotest.tools/v3/internal/maint"

import (
Expand Down

0 comments on commit 79f783f

Please sign in to comment.