69fc22f0 by JessonChan Committed by astaxie

typo fixed

1 parent 4cd7177e
...@@ -51,7 +51,7 @@ import ( ...@@ -51,7 +51,7 @@ import (
51 "time" 51 "time"
52 ) 52 )
53 53
54 var defaultSetting = BeegoHttpSettings{UserAgent: "beegoServer", ConnectTimeoutt: 60 * time.Second, ReadWriteTimeout: 60 * time.Second, Gzip: true} 54 var defaultSetting = BeegoHttpSettings{UserAgent: "beegoServer", ConnectTimeout: 60 * time.Second, ReadWriteTimeout: 60 * time.Second, Gzip: true}
55 var defaultCookieJar http.CookieJar 55 var defaultCookieJar http.CookieJar
56 var settingMutex sync.Mutex 56 var settingMutex sync.Mutex
57 57
...@@ -88,7 +88,7 @@ func newBeegoRequest(url, method string) *BeegoHttpRequest { ...@@ -88,7 +88,7 @@ func newBeegoRequest(url, method string) *BeegoHttpRequest {
88 return &BeegoHttpRequest{ 88 return &BeegoHttpRequest{
89 url: url, 89 url: url,
90 req: &req, 90 req: &req,
91 paras: map[string]string{}, 91 params: map[string]string{},
92 files: map[string]string{}, 92 files: map[string]string{},
93 setting: defaultSetting, 93 setting: defaultSetting,
94 resp: &resp, 94 resp: &resp,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!