1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request from QthCN/fix/readme_err

FIX incorrect usage about libnetwork.New() in README.md
This commit is contained in:
Jana Radhakrishnan 2015-07-20 14:46:24 -07:00
commit 27385b21be

View file

@ -18,7 +18,10 @@ There are many networking solutions available to suit a broad range of use-cases
```go
// Create a new controller instance
controller := libnetwork.New()
controller, err := libnetwork.New()
if err != nil {
return
}
// Select and configure the network driver
networkType := "bridge"