style: run go fmt on every .go file (#392)
This commit is contained in:
parent
8e4dfbd10d
commit
d6ff5f7d96
7 changed files with 19 additions and 15 deletions
|
@ -5,10 +5,10 @@
|
|||
// Package list implements a doubly linked list.
|
||||
//
|
||||
// To iterate over a list (where l is a *List):
|
||||
//
|
||||
// for e := l.Front(); e != nil; e = e.Next() {
|
||||
// // do something with e.Value
|
||||
// }
|
||||
//
|
||||
package list
|
||||
|
||||
// Element is an element of a linked list.
|
||||
|
|
|
@ -134,5 +134,6 @@ func _BpfClose(closers ...io.Closer) error {
|
|||
}
|
||||
|
||||
// Do not access this directly.
|
||||
//
|
||||
//go:embed bpf_bpfeb.o
|
||||
var _BpfBytes []byte
|
||||
|
|
|
@ -134,5 +134,6 @@ func _BpfClose(closers ...io.Closer) error {
|
|||
}
|
||||
|
||||
// Do not access this directly.
|
||||
//
|
||||
//go:embed bpf_bpfel.o
|
||||
var _BpfBytes []byte
|
||||
|
|
|
@ -115,5 +115,6 @@ func _BpfClose(closers ...io.Closer) error {
|
|||
}
|
||||
|
||||
// Do not access this directly.
|
||||
//
|
||||
//go:embed bpf_bpfeb.o
|
||||
var _BpfBytes []byte
|
||||
|
|
|
@ -115,5 +115,6 @@ func _BpfClose(closers ...io.Closer) error {
|
|||
}
|
||||
|
||||
// Do not access this directly.
|
||||
//
|
||||
//go:embed bpf_bpfel.o
|
||||
var _BpfBytes []byte
|
||||
|
|
Loading…
Reference in a new issue