Fix typo in stream.rs

avaiable -> available
This commit is contained in:
Ikko Ashimine 2022-07-23 23:29:58 +09:00 committed by volcano
parent 67ca5444f4
commit fc0f913940

@ -91,7 +91,7 @@ impl Stream {
return_errno!(EINVAL, "the socket is already bound");
}
// check the global address space to see if the address is avaiable before bind
// check the global address space to see if the address is available before bind
ADDRESS_SPACE.add_binder(addr)?;
info.set_addr(addr);
}