Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
shibingli committed Feb 27, 2017
1 parent c32b1c0 commit 59e0749
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
1、修改部分BUG
2、更新 term.js
3、更新 Golang 到 1.8 版本
4、修证 Golang 1.8 版本中 url.Parse 解析地址 BUG。

2016.05.25

Expand Down
5 changes: 1 addition & 4 deletions src/apibox.club/test/test.go
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
package main

import (
"apibox.club/utils"
"fmt"
"net"
"net/url"
"strings"
)

func main() {

//golang 1.8 bug
u, err := url.Parse("192.168.2.2:6688")
u, err := url.Parse("//192.168.2.2:6688")
if nil != err {
panic(err)
}
Expand Down

0 comments on commit 59e0749

Please sign in to comment.