From 250c22580b569d90af3b9feacbba5ef14090b7c4 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") --- ipam/allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipam/allocator.go b/ipam/allocator.go index dfad30bdee..bec7c75343 100644 --- a/ipam/allocator.go +++ b/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 }