浏览代码

Minor spelling fix ("likey" => "likely")

Tom Parker 9 年之前
父节点
当前提交
64547e43c0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      libnetwork/ipam/allocator.go

+ 1 - 1
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
 }