瀏覽代碼

gofmt recent changes

Raul Silvera 8 年之前
父節點
當前提交
8e1a8016a0
共有 1 個檔案被更改,包括 5 行新增5 行删除
  1. 5
    5
      driver/driver.go

+ 5
- 5
driver/driver.go 查看文件

@@ -42,12 +42,12 @@ func (o *Options) InternalOptions() *plugin.Options {
42 42
 		sym = &internalSymbolizer{o.Sym}
43 43
 	}
44 44
 	return &plugin.Options{
45
-		Writer: o.Writer,
45
+		Writer:  o.Writer,
46 46
 		Flagset: o.Flagset,
47
-		Fetch: o.Fetch,
48
-		Sym: sym,
49
-		Obj: obj,
50
-		UI: o.UI,
47
+		Fetch:   o.Fetch,
48
+		Sym:     sym,
49
+		Obj:     obj,
50
+		UI:      o.UI,
51 51
 	}
52 52
 }
53 53