From 64547e43c0d8874db9141347eca3a8f353cf4be9 Mon Sep 17 00:00:00 2001 From: Tom Parker Date: Fri, 30 Oct 2015 17:18:50 +0000 Subject: [PATCH] Minor spelling fix ("likey" => "likely") --- libnetwork/ipam/allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnetwork/ipam/allocator.go b/libnetwork/ipam/allocator.go index dfad30bdee..bec7c75343 100644 --- a/libnetwork/ipam/allocator.go +++ b/libnetwork/ipam/allocator.go @@ -195,7 +195,7 @@ func (a *Allocator) getAddrSpace(as string) (*addrSpace, error) { defer a.Unlock() aSpace, ok := a.addrSpaces[as] if !ok { - return nil, types.BadRequestErrorf("cannot find address space %s (most likey the backing datastore is not configured)", as) + return nil, types.BadRequestErrorf("cannot find address space %s (most likely the backing datastore is not configured)", as) } return aSpace, nil }