aboutsummaryrefslogtreecommitdiffstats
path: root/cleaner/cleaner.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-10-24 18:11:36 -0300
committerGitHub <noreply@github.com>2018-10-24 18:11:36 -0300
commita405c33ed695736495c80ea7d9a0f570775c17be (patch)
treea7291df524631c503da2d1340ed34df3fbeaa16a /cleaner/cleaner.go
parentc38f8f1c307cf0320ed3d8556cd9dede443fb2a2 (diff)
downloadgit-bug-a405c33ed695736495c80ea7d9a0f570775c17be.tar.gz
Renamed struct from t to Cleaner
Co-Authored-By: auyer <rafael@rcpassos.me>
Diffstat (limited to 'cleaner/cleaner.go')
-rw-r--r--cleaner/cleaner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cleaner/cleaner.go b/cleaner/cleaner.go
index 9bce4c03..5937718b 100644
--- a/cleaner/cleaner.go
+++ b/cleaner/cleaner.go
@@ -7,7 +7,7 @@ import (
"syscall"
)
-type t func() error
+type Cleaner func() error
var cleaners []t
var inactive bool