From 677f9b7d7e3f097c1438756bc9e7fb5479b319fd Mon Sep 17 00:00:00 2001 From: wulonghui Date: Tue, 4 Aug 2015 11:14:01 +0800 Subject: [PATCH] Fix example package error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90fcbe0..d71c5b3 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ There are many networking solutions available to suit a broad range of use-cases epInfo, err := ep.DriverInfo() mapData, ok := epInfo[netlabel.PortMap] if ok { - portMapping, ok := mapData.([]netutils.PortBinding) + portMapping, ok := mapData.([]types.PortBinding) if ok { fmt.Printf("Current port mapping for endpoint %s: %v", ep.Name(), portMapping) }