Fix typos and markdowns

Found via these commands:

    codespell -L crate
    markdownlint -f README.md --disable MD013 MD033 MD041
This commit is contained in:
Kian-Meng Ang 2022-08-12 18:44:18 +08:00
parent aef90a5c0c
commit 074e1b430c
2 changed files with 18 additions and 18 deletions

View file

@ -185,7 +185,7 @@ impl TcpPortPool {
}
}
/// Requests a free port from the pool. An error is returned if none is available (exhaused max capacity).
/// Requests a free port from the pool. An error is returned if none is available (exhausted max capacity).
pub async fn next(&self) -> anyhow::Result<VirtualPort> {
let mut inner = self.inner.write().await;
let port = inner