diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-06-14 00:45:13 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-06-14 00:45:13 +0200 |
commit | ff56099752ef4fe4de9d7a83079deed29da7756e (patch) | |
tree | ec87fb2b1238c9ed6c44f48c235b6153d12d3151 /pkg/atexit/atexit.go | |
parent | fe2bae01c6b14eef0e61cd4a6bd50e814de4bb58 (diff) |
Formatting
Diffstat (limited to 'pkg/atexit/atexit.go')
-rw-r--r-- | pkg/atexit/atexit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/atexit/atexit.go b/pkg/atexit/atexit.go index ed35ccf..a349649 100644 --- a/pkg/atexit/atexit.go +++ b/pkg/atexit/atexit.go @@ -7,7 +7,7 @@ func Register(f func()) { } func Exec() { - for i := len(hooks)-1; i >= 0; i-- { + for i := len(hooks) - 1; i >= 0; i-- { hooks[i]() } } |