Merge pull request #725 from palfrey/patch-1

Minor spelling fix ("likey" => "likely")
This commit is contained in:
Jana Radhakrishnan 2015-10-30 11:52:31 -07:00
commit 412ee44f94
1 changed files with 1 additions and 1 deletions

View File

@ -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
}