Forráskód Böngészése

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

Tom Parker 9 éve
szülő
commit
64547e43c0
1 módosított fájl, 1 hozzáadás és 1 törlés
  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()
 	defer a.Unlock()
 	aSpace, ok := a.addrSpaces[as]
 	aSpace, ok := a.addrSpaces[as]
 	if !ok {
 	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
 	return aSpace, nil
 }
 }