From 9c9c79f1b0dbb775b81ceade667ed39e834a1075 Mon Sep 17 00:00:00 2001 From: Mingzhen Feng Date: Thu, 21 May 2015 16:08:10 +0800 Subject: [PATCH] fixed some typos Signed-off-by: Mingzhen Feng --- libnetwork/endpoint.go | 2 +- libnetwork/sandbox/sandbox.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libnetwork/endpoint.go b/libnetwork/endpoint.go index 9b832358e8..2935bca31c 100644 --- a/libnetwork/endpoint.go +++ b/libnetwork/endpoint.go @@ -40,7 +40,7 @@ type Endpoint interface { // Return certain operational data belonging to this endpoint Info() EndpointInfo - // Info returns a collection of driver operational data related to this endpoint retrieved from the driver + // DriverInfo returns a collection of driver operational data related to this endpoint retrieved from the driver DriverInfo() (map[string]interface{}, error) // Delete and detaches this endpoint from the network. diff --git a/libnetwork/sandbox/sandbox.go b/libnetwork/sandbox/sandbox.go index 9e104cabdc..d43a94d3ce 100644 --- a/libnetwork/sandbox/sandbox.go +++ b/libnetwork/sandbox/sandbox.go @@ -25,7 +25,7 @@ type Sandbox interface { // an appropriate suffix for the DstName to disambiguate. AddInterface(*Interface) error - // Remove an interface from the sandbox by renamin to original name + // Remove an interface from the sandbox by renaming to original name // and moving it out of the sandbox. RemoveInterface(*Interface) error