Skip to content

Commit 695828d

Browse files
committed
Review feedback
1 parent d4b45c7 commit 695828d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ linters:
4646
# - godox don't error although there are TODOs in the code
4747
- funlen
4848
- whitespace
49-
# - wsl allow "non-ideomatic" whitespace formattings for now
49+
# - wsl allow "non-idiomatic" whitespace formattings for now
5050
- goprintffuncname
5151
- gomnd
5252
- goerr113

bitbucket/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ limitations under the License.
1717
package bitbucket
1818

1919
import (
20-
// Dummy import until we have the implementation ready.
20+
// TODO: Dummy import until we have the implementation ready.
2121
_ "github.com/ktrysmt/go-bitbucket"
2222
)

github/resource_repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func (r *userRepository) Reconcile(ctx context.Context) (bool, error) {
136136
return true, r.Update(ctx)
137137
}
138138

139-
// Delete deletes the current resource irreversible.
139+
// Delete deletes the current resource irreversibly.
140140
//
141141
// ErrNotFound is returned if the resource doesn't exist anymore.
142142
func (r *userRepository) Delete(ctx context.Context) error {

gitlab/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ limitations under the License.
1717
package gitlab
1818

1919
import (
20-
// Dummy import until we have the implementation ready.
20+
// TODO: Dummy import until we have the implementation ready.
2121
_ "github.com/xanzy/go-gitlab"
2222
)

gitprovider/gitprovider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ type Updatable interface {
6666
// Deletable is an interface which all objects that can be deleted
6767
// using the Client implement.
6868
type Deletable interface {
69-
// Delete deletes the current resource irreversible.
69+
// Delete deletes the current resource irreversibly.
7070
//
7171
// ErrNotFound is returned if the resource doesn't exist anymore.
7272
Delete(ctx context.Context) error

0 commit comments

Comments
 (0)