소스 검색

osutil: fix InterruptHandler comment position

Mateus Braga 11 년 전
부모
커밋
cec8466ad2
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      pkg/osutil/interrupt_unix.go

+ 2 - 3
pkg/osutil/interrupt_unix.go

@@ -14,9 +14,6 @@
 
 // +build !windows,!plan9
 
-// InterruptHandler is a function that is called on receiving a
-// SIGTERM or SIGINT signal.
-
 package osutil
 
 import (
@@ -27,6 +24,8 @@ import (
 	"syscall"
 )
 
+// InterruptHandler is a function that is called on receiving a
+// SIGTERM or SIGINT signal.
 type InterruptHandler func()
 
 var (